What is the output of the following code?
int *p;int *q;p = new int;*p = 43;q = p;*q = 52;p = new int;*p = 78;q = new int;*q = *p;cout ≪ *p ≪ " " ≪ *q ≪ end1;
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.