Loading

Showing posts with label blinking. Show all posts

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;
}

Posted in , , , | Leave a comment