Sunday 3 March 2013

C Programming code to change text color

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

main()
{
clrscr();
textcolor(BLUE);
cprintf("Hello World");
getch();
return 0;
}

No comments:

Post a Comment