fork(1) download
  1. #include <stdio.h>
  2. int mytest(void);
  3. int mytest2(void) {
  4. // your code goes here
  5. mytest();
  6. return;
  7. }
  8. int main(void)
  9. {
  10. printf("mytest2 = %d\n", mytest2());
  11. }
  12. int mytest(void)
  13. {
  14. return 3;
  15. }
  16.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
mytest2 = 0