Showing posts with label WAP to print any name on screen 10 times. Show all posts
Showing posts with label WAP to print any name on screen 10 times. Show all posts

PRINT NAME 10 TIMES

WAP to print any name on screen 10 times

void main ()

{

int a=1;

clrscr();

do

{

printf ("Jagjeet\n");

a++;

}

while (a<=10);

getch ();

}


Labels