fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. char c='A';
  6. for(int x=0;x<26;x++)
  7. {
  8. printf("%c\n",c+x);
  9. }
  10. printf("\n");
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
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