|
Description
This changes the background
behind text using the textbackground
function which some compilers support
Code
#include <conio.h>
int main()
{
int color;
for(color=0;color<8;color++)
{
textbackground(color);
cprintf("This is color %d\n",color);
}
return 0;
}
Information
tested using LCC Win
32
|