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