fork download
  1. #include <stdio.h>
  2.  
  3. int f(int i) {
  4. ++i;
  5. return i;
  6. }
  7.  
  8. int main(void)
  9. {
  10. int i = 1;
  11. i = f(i);
  12.  
  13. printf("%d",i);
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5300KB
stdin
Standard input is empty
stdout
2