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