textcolor


conio.h


/*
Write a program in C for textcolor
*/

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

main()
{
   textcolor(RED);
   cprintf("C programming");

   getch();
   return 0;
}

 

Post a Comment

0 Comments