#include using namespace std; int main() { int *p1; p1 = new int; int *p2; p2 = new int; p2 = p1; // what happens here? *