C PROGRAMMING
Adding color to text and background using c program
Adding color to text and background using c program
I have done it at Dev c++ editor.
#include<stdio.h>
#include<conio.h>
main()
{
system("COLOR E2");
printf("MY PROGRAM nnn");
getche();
system("COLOR 89");
printf("CHANGED BACKGROUND");
getche();
}