Sunday 3 March 2013

C Programming code for blinking text

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

main()
{
clrscr();
textcolor(RED+BLINK);
cprintf("Hello World");
getch();
return 0;
}

No comments:

Post a Comment