2. Consider the following code:
4.
1 - int f (int x, int y) {
2- if (x + 2 < y) {
3
x = x + 3;
return y * X;
}
6 - else {
7
return x + y + 2;
8 }
9
What does f(5, 10) evaluate to?
Answers
Answered by
1
Answer:
5+2<10 so output us y(x+3) =80
Similar questions