#include using namespace std; int main(){ int* a_pointer; cout << "Size of a_pointer: " << sizeof(a_pointer) << endl; int goose_count = 961; a_pointer = &goose_count; // & means "the address of" here cout << "a_pointer has the value: " << a_pointer << endl; cout << "a_pointer points to: " << *a_pointer << endl; // * means "the thing a_pointer points to" here return 0; }