fork download
#include <iostream>
using namespace std;
int main()
{
    int i;
    int &ri = i;
    cout << &ri << endl << &i;
    return 0;
}
Success #stdin #stdout 0s 4376KB
stdin
Standard input is empty
stdout
0x7ffde91d492c
0x7ffde91d492c