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