fork 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("%c",c+x);
  9. }
  10. printf("\n");
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
ABCDEFGHIJKLMNOPQRSTUVWXYZ