fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char c='A';
  5. for(int x=0;x<26;x++){
  6. printf("%c", c );
  7. c++;
  8. }
  9. printf("\n");
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
ABCDEFGHIJKLMNOPQRSTUVWXYZ