A Write a procedure to implement highlight as a blinking operation?

1 answer

Answer

1098315

2026-03-10 13:00

+ Follow

The function textattr in conio.h can be use for this

purpose a small program has presented here...

#include<conio.h>

int main()

{

textattr(129);

cprintf("My name is Lord Blade...");

return 0;

}

here in the textattr till 128 only colors would be set and

more than it colors with blink.

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.