fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. auto x = 0;
  5. double const& ref = x;
  6. x = 23;
  7. std::cout << &x << std::endl;
  8. std::cout << &ref << std::endl;
  9. }
  10.  
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
0xbf960ed4
0xbf960ed8