#include using namespace std; int main() { long int i,j,k; long int *pi, *pj, *pk; cout << &i << " " << &j << " " << &k << endl; cout << &pi << " " << &pj << " " << &pk << endl; cout << endl; pi = &i; pj = &j; pk = &k; cout << pi << " " << pj << " " << pk << endl; cout << endl; int *ps = new int; cout << ps << endl; int *sp = new int; cout << sp << endl; delete ps; delete sp; cout << endl; cout << endl; int *list; list = new int[10]; for(int i = 0; i<10; i++) list[i]=i; for(int i = 0; i<10; i++) cout << "i is " << i << " list[i] is " << list[i] << endl; delete[] list; cout << endl; cout << endl; return 0; }