fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int i;
  6. for(i=0;i<6;i++){
  7. printf("%d回目\n",i);
  8. }
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
0回目
1回目
2回目
3回目
4回目
5回目