I am quite confused on how this works:
int number = 10; int* pointerOne = &number; int* pointerTwo = pointerOne; cout << *pointerTwo;