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;
A) -10 0 0
B) 0 10 0
C) 10 0 0
D) 0 0 10
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q44: What symbol is used to signify that
Q45: A _ is a simplified version of
Q46: The postcondition of a function<br>A) determines how
Q47: Which of the following are true?<br>A) a
Q48: If you need a function to get
Q49: What is the value of choice after
Q50: If you were to write a function
Q51: Which of the following function prototypes are
Q52: When the address of the actual argument
Q54: Testing your program should be done<br>A) As