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