Page

C Program To Change Text Background Color

#include<stdio.h>
#include<conio.h>

main()
{
   textbackground(RED);

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

   getch();
   return 0;
}

No comments:

Post a Comment