fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. char c='A';
  6. for(int x=0;x<26;x++)
  7. {
  8. printf("%d\n",c+x);
  9. }
  10. printf("\n");
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90