fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. char c = 'a';
  6.  
  7. while (c++ <= 'z')
  8. putchar (c-1);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
abcdefghijklmnopqrstuvwxyz