Monday 4 September 2017

C-Program to Print Alphabets from a-z(small)



#include<stdio.h>

int main()
{
int i;
for(i=97;i<=122;i++)
{
printf("%c",i);
}
printf("\n");
return 0;
}

Output:
a
b
..
.
.
z

No comments:

Post a Comment