Question: What is the output of the given C++ code?
if (x < 20 && y > 20);
{
x = 2 * x;
y = y / 2;
cout << x << " " << y << x - y << endl;
}
else
{
x = y / x;
cout << x << " " << y << " " << x * x + y * y << endl;
You need to find out the output of the given code.