Mega Code Archive

 
Categories / C++ / Data Type
 

Taking the Address of a Reference

#include <iostream> int main() {    using namespace std;    int  intOne;    int &rSomeRef = intOne;    intOne = 5;    cout << "intOne: " << intOne << endl;    cout << "rSomeRef: " << rSomeRef << endl;    cout << "&intOne: "  << &intOne << endl;    cout << "&rSomeRef: " << &rSomeRef << endl;    return 0; }