fork download
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. char name;
  6. for(name='a';name<='z';name=name+1)
  7. {
  8. cout<<name<<endl;
  9. }
  10. }
Success #stdin #stdout 0.01s 5308KB
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