fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. int p = 5;
  5. int *x = &p;
  6. std::cout
  7. << &*x
  8. << std::endl
  9. << &*&*&*&*&*&*&*&*&*&*&*&*&*x;
  10. return 0;
  11. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
0x7ffd68e863ec
0x7ffd68e863ec