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