fork download
  1. #include <stdio.h>
  2.  
  3. int main ()
  4. {
  5. for(char ch='A';ch<='Z';ch++)
  6. {
  7. putchar(ch);
  8. }
  9.  
  10. return(0);
  11. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
ABCDEFGHIJKLMNOPQRSTUVWXYZ