textbackground in c

textbackground function is used to change of current background color in text mode. See available colors.

Declaration : void textbackground(int color);

C programming code for textbackground
#include<stdio.h>
#include<conio.h>

main()
{
   textbackground(RED);

   cprintf("C program to change background color.");

   getch();
   return 0;
}

Comments

Popular posts from this blog

Operators And Separators In C Language Operators in C Language:

Difference between asterisk and ampersand operators in c