fork(1) download
  1. #include <stdio.h>
  2. int fun(int *a)
  3. {
  4. (*a)++;
  5. return (*a);
  6.  
  7. }
  8. int main(void) {
  9. static int x=10;
  10. x=x+fun(&x)+fun(&x)+fun(&x);;
  11. printf("%d",x);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
47