fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int i;
  6. int &ri = i;
  7. cout << &ri << endl << &i;
  8. return 0;
  9. }
Success #stdin #stdout 0s 4376KB
stdin
Standard input is empty
stdout
0x7ffde91d492c
0x7ffde91d492c