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. long l = 5;
  10. long* foo()
  11. {
  12. return &l; //return l's memory adress;
  13. }
  14.  
  15. int main()
  16. {
  17. *(foo())=5;
  18. printf("l= %ld\n",l);
  19.  
  20.  
  21.  
  22. return 0;
  23. }
Success #stdin #stdout 0s 5288KB
stdin
45
stdout
l= 5