|
Description
This uses various functions
to display different levels of text
intensity . Useful if you needed to
highlight some text instructions on
the screen in a program.
Code
#include <conio.h>
int main()
{
clrscr();
lowvideo();
cprintf("This is low video text.\n");
highvideo();
cprintf("This is high video text.\n");
normvideo();
cprintf("Back to normal again.\n");
return 0;
}
Information
tested using LCC Win
32
|