What is the output of the given c code - you need to find


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.

 

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: What is the output of the given c code - you need to find
Reference No:- TGS0952028

Expected delivery within 24 Hours