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