/* program to print a to z */
# include <stdio.h>
void main ()
{
int a ;
clrscr () ;
for ( a=97; a<=122; a++)
printf ("%c", a) ;
getch () ;
}
# include <stdio.h>
void main ()
{
int a ;
clrscr () ;
for ( a=97; a<=122; a++)
printf ("%c", a) ;
getch () ;
}
No comments:
Post a Comment