Display Colored Text on different rows columns using C/C++



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

int main()
{
clrscr();

   gotoxy(10,10);
   textcolor(RED);
   textbackground(BLUE);
   cprintf("C programming");
   getch();
   return 0;
}

No comments:

Post a Comment