Q. What is the output of the following C++ code?
Code:#include <iostream>
using namespace std;
int main()
{
int x = 2, y = 3, z, w;
z = x, y;
w = (x, y);
cout << z << ' ' << w;
return 0;
}
β
Correct Answer: (C)
2 3