====== textbackground ======
void textbackground(int color);
==== description of textbackground ====
change of current background color in text mode
^ Color ^ Value ^
|BLACK | 0|
|BLUE | 1|
|GREEN | 2|
|CYAN | 3|
|RED | 4|
|MAGENTA | 5|
|BROWN | 6|
|LIGHTGRAY | 7|
|DARKGRAY | 8|
|LIGHTBLUE | 9|
|LIGHTGREEN | 10|
|LIGHTCYAN | 11|
|LIGHTRED | 12|
|LIGHTMAGENTA| 13|
|YELLOW | 14|
|WHITE | 15|
#include
#include
int main( void )
{
textbackground(RED);
cprintf("and the answer is 42 with a red background.");
getch();
return 0;
}
===== output of textbackground c example =====
and the answer is 42 with a red background
{{:c:conio.h:textbackground.png?nolink|textbackground example output in cmd}}