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