/* A demo program to show the usage of & and * opetaors * pointers and array variable */ #include using namespace std; void Pause() { cout <<"Press any key to continue:"; char key; cin >> key; } int main() { long l; int a; int b[20]; cout <<"--------------------------------------------------------------- \n"; cout <<"Demonstrating how to obtain the address of a variable, using &\n"; cout <<"--------------------------------------------------------------- \n"; cout <<"The size of long variable l is: " << sizeof(l)<