fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. char alphabet;
  5. alphabet='a';
  6. do
  7. {
  8. printf("%c",alphabet);
  9. alphabet++;
  10. }
  11. while(alphabet<='z');
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5472KB
stdin
Standard input is empty
stdout
abcdefghijklmnopqrstuvwxyz