fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. void f(int *x)
  5. {
  6. *x=*x+1;
  7. printf("%d-",*x);
  8.  
  9. }
  10. int main()
  11. {
  12. int i=66;
  13. printf("%d\n",i);
  14. f(&i);
  15. printf("%d",i);
  16. return 0;
  17. }
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
66
67-67