#include using namespace std; int main() { int *p,*q; p = new int; *p = 42; cout << *p << endl; q = p; (*q)++; cout << *p << endl; return 0; }