fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. int x = 10;
  6. int *y, **z;
  7. y=&x;
  8. *y=4;
  9. printf("%d",x);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5268KB
stdin
Standard input is empty
stdout
4