/* A demo program to show pointer variables */ #include using namespace std; void Pause() { cout <<"Press any key to continue:"; char key; cin >> key; } int main() { long l; int a=0; int *p=NULL; int *q; cout <<"--------------------------------------------------------------- \n"; cout <<"Making p pointing to a: p = &a\n"; cout <<"--------------------------------------------------------------- \n"; p = &a; //assign the address of variable a to p cout <<"Pointer p=" << p << endl; Pause(); cout <