//Introduction to pointers. #include #include using namespace std; int main () { int p=2; int* pointer_p ; pointer_p = &p ; cout << *pointer_p << " "<< endl; // Just to confirm we print this to the screen. return 0; }