HOW TO CHANGE COLOR IN C LANGUAGE BY USING TEXTCOLOR FUNCTION AND BLINK ALSO

  #include<stdio.h>

 #include<conio.h>

 #include<dos.h>

#include<stdlib.h>

 void main(){

       randomize();

       while(!kbhit()){

           clrscr();

           gotoxy(random(80),random(24));

textcolor(GREEN+BLINK);

cprintf("lakshman");

delay(400);

       }

  }

Comments

Popular posts from this blog

250+ C Programs for Practice

FUNCTION OVERRIDING IN CPP