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
WAP to print any name on screen 10 times
void main ()
{
int a=1;
clrscr();
do
{
printf ("Jagjeet\n");
a++;
}
while (a<=10);
getch ();
}