So I have the following (very simple) code:
int* pInt = new int(32);
std::cout<< pInt << std::endl; //statement A
std::cout<< *pInt << std::endl; //statement B
std::cout << &pInt << std::endl; //statement C
So here's what I think I am doing (I have learned that in C++ I am rarely ever doing what I think I am doing):
- Creating a pointer to an integer and calling it pInt
- statementA prints the address of the value '32'
- statementB prints the integer value that is being pointed to by my pointer (which is done because I dereference the pointer, thus giving me access to what it is pointing to).
- statementC prints the address of the pointer itself (not the address of the integer value '32').
Is all of this correct?