Search Your Query

Breaking

Monday, April 1, 2019

Print A to Z


Print A to Z

Program Code :

#include<stdio.h>
int main(){
int i;
for(i=65;i<=90;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