Loading

c program to display blinking text/character

C Program to Display Blinking Text/Character


#include <conio.h>

int main(void)
{
   int i;

   clrscr();
   for (i=0; i<9; i++)
   {
       textattr(i + ((i+1) << 4));
       cprintf("This is a test\r\n");
   }

   return 0;
}

This entry was posted in , , , . Bookmark the permalink.

Leave a reply