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