123
int a = 5; int& myReference = a; int* myPointer = &myReference;
std::cout << *myPointer;
12
int a = 5; int* myPointer = &a;