/*program to print counting*/
# include <stdio.h>
void main ()
{
int a = 1 ;
clrscr () ;
while ( a<=100)
{
printf ("/n %d", a) ;
a++ ;
}
getch () ;
}
# include <stdio.h>
void main ()
{
int a = 1 ;
clrscr () ;
while ( a<=100)
{
printf ("/n %d", a) ;
a++ ;
}
getch () ;
}
No comments:
Post a Comment