fork(1) download
  1. #include<stdio.h>
  2. int fx (){ printf("Hello x !\n"); return 1;}
  3. int fy (){ printf("Hello y !\n"); return 2;}
  4.  
  5. void test_call(int x, int y){}
  6.  
  7. int main(){
  8. test_call(fx(),fy());
  9. }
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
Hello y !
Hello x !