fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C/C++.
  5. Code, Compile, Run and Debug online from anywhere in world.
  6.  
  7. *******************************************************************************/
  8. #include <stdio.h>
  9. void fun(int **p) {
  10. **p = 20;
  11. }
  12. int main() {
  13. int a = 10;
  14. int *ptr = &a;
  15. fun(&ptr);
  16. printf("%d", a);
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5284KB
stdin
45
stdout
20