fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4.  
  5. int i;
  6. void* p = &i;
  7. std::cout << &p << std::endl; // value #1
  8. std::cout << p << std::endl; // value #2
  9. std::cout << &i << std::endl; // value #2
  10. {
  11. void* p = &p;
  12. std::cout << &p << std::endl; // value #3
  13. std::cout << p << std::endl; // value #3
  14. }
  15. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
0xffb2f368
0xffb2f364
0xffb2f364
0xffb2f36c
0xffb2f36c