What is the output of the following C++ code?
int x;int y;int *p = &x;int *q = &y;x = 35; y = 46;p = q;*p = 78;cout ≪ x ≪ " " ≪ y ≪ end1;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.