Computer Science, asked by SHALUMEHTA2731, 9 months ago

.Question 2 Consider the following int g (int x, int n) { for (int i = 0; i < n; i++) { if (i % 2 == 0) { x *= i + 1; continue; } x--; if (x == 0) { break; } } return x; } What does g(2, 3) evaluate to?

Answers

Answered by agrawalbrijmohan8
1

Answer:

I don't know the answer

Explanation:

Similar questions