fork(1) download
  1. #include <stdio.h>
  2. int num=0;
  3.  
  4. void mycount(void) {
  5. num++;
  6. printf("%d回目の呼び出しです\n",num);
  7. }
  8.  
  9. int main(void) {
  10. // your code goes here
  11. mycount();
  12. mycount();
  13. mycount();
  14. mycount();
  15. mycount();
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
1回目の呼び出しです
2回目の呼び出しです
3回目の呼び出しです
4回目の呼び出しです
5回目の呼び出しです