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