Blinking Text


conio.h


/*
Write a program in C for blinking text
*/

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

main()
{
   textcolor(MAGENTA+BLINK);
   cprintf("C programming");

   getch();
   return 0;
}

Post a Comment

0 Comments