Saturday 10 December 2011

Write a program to print alphabets in small letter in c

#include
#include
main()
{
int a;
clrscr();
for(a=97;a<=122;a++)
printf("%c",a);
getch();
}

OUTPUT
a b c d e f g h i j k l m n o p q r s t u v w x y z

No comments:

Post a Comment