fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int i;
  8.  
  9. for(i = 10; i >= 1; i--) {
  10. printf("%d ", i);
  11. }
  12.  
  13. printf("\n");
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
10 9 8 7 6 5 4 3 2 1