Examlex

Solved

What Is the Output of the Following Code Fragments

question 53

Multiple Choice

What is the output of the following code fragments?
Int trial int& a, int b)
{
Ifb > a)
{
A=b;
Return -a;
}
Else
{
Return 0;
}
}
Float x=0, y=10,z;
Z=trialy,x) ;
Cout << z << " " << x <<" " << y << endl;


Definitions:

Related Questions