void main() { int * p; p=new int(8); cout <<*p<<endl; // delete p; p=new int (9); cout<<*p<<endl; delete p; }