Search Your Query

Breaking

Saturday, March 30, 2019

Print Small a to z


Print Small a to z

Program Code :

#include<stdio.h>
int main(){
int i;
for(i=97 ; i<=122 ; i++){
printf("%c\n",i);
}
return 0;
}

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