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