| Description
This shows a couple
of functions to control the intensity
of the characters displayed in a console
window .
Code
#include <conio.h>
#include <stdio.h>
int main(void)
{
clrscr();
lowvideo();
printf("This shows low intensity
characters.\n");
highvideo();
printf("This shows high intensity
characters.\n");
normvideo();
printf("And back to normal again.\n");
return 0;
}
Information
tested using LCC Win
32 and Windows XP
|