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