using namespace std; #include int main () { int *p = new int(5); cout << "p= " << (long) p << ", *p = " << *p << endl; return 0; }