int f (int x, int y) { if (x + 2 < y) { x = x + 3; return y * x; } else { return x + y + 2; } } what does f(5,7) evalute to
Answers
Answered by
3
Answer:
int f (int x, int y) { if (x + 2 < y) { x = x + 3; return y * x; } else { return x + y + 2; } } what does f(5,7) evalute to
Similar questions