| Description
Some compilers in their
conio.h include file have a textattr
function this allows you to set the
color of the text , this is worse
blinking text aagh.
Code
#include <conio.h>
int main()
{
int color;
textattr(128 + 10);
cprintf("This is blinking text\n");
return 0;
}
Information
|