Question - Consider x=2 and y=3. show the output, if any, of the given code.
What is the output if x=3 and y=2?
What is the output if x=3, and y=3?
if (x>2)
if (y>2)
{
int z=x+y;
cout << "z is "<
}
else
cout << "x is " << x << endl;
This one is complex and I don't know how to do it