What is the output of the following C++ code?
int num1;
int num2;
int *p = &num1;
p = &num2;
*p = 25;
num1 = num2 + 6;
p = &num1;
num2 = 73;
*p = 47;
cout << *p << " " << num1 << " " << num2 << endl;
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.