free c programming course
Tuesday, 28 August 2007
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 ();
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment