12345678910111213141516171819202122
#include <iostream> using namespace std; int main () { int x = 5; int* ptrX = &x; cout << ptrX << endl; // How can I print out, what is being //pointed at...see how much mem it takes up return 0; } ///GOAL OUTPUT: ptrX takes up 4 bytes