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();
}

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button