BEST EXAMPLE OF BLINK AND LINES OF CODE USING GOTO FUNCTION

  #include<stdio.h>

 #include<conio.h>

 #include<dos.h>

#include<stdlib.h>

  void main(){

       clrscr();

    int j=0;

    for(int i=0; i<=80; i+=3){

       

        gotoxy(i,j++);

    textcolor(GREEN+BLINK);

cprintf("lakshman");

delay(400);

       }

  }

Comments

Popular posts from this blog

250+ C Programs for Practice

FUNCTION OVERRIDING IN CPP