What is wrong with the following code?
int *p; //Line 1int *q; //Line 2p = new int; //Line 3*p = 43; //Line 4q = p; //Line 5*q = 52; //Line 6delete q; //Line 7cout « *p « " " « *q « end1; //Line 8
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.