fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. char alphabet;
  5. alphabet='a';
  6. do
  7. {
  8. printf("%c\n",alphabet);
  9. alphabet++;
  10. }
  11. while(alphabet<='z');
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5500KB
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