fork download
  1. #include <stdio.h>
  2.  
  3. void func(int **p)
  4. {
  5. printf("%d\n", **p);
  6.  
  7. int *x = *p;
  8. printf("%d\n", *x);
  9. }
  10.  
  11. int
  12. main()
  13. {
  14. int a = 123;
  15. int *p;
  16. p = &a;
  17. func(&p);
  18.  
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
123
123