Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Algorithms | Recursion | Question 5

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

What does fun2() do in general?




int fun(int x, int y)
{
    if (y == 0)   return 0;
    return (x + fun(x, y-1));
}
  
int fun2(int a, int b)
{
    if (b == 0) return 1;
    return fun(a, fun2(a, b-1));
}

(A) x*y
(B) x+x*y
(C) xy
(D) yx


Answer: (C)

Explanation: The function multiplies x to itself y times which is xy.

Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 28 Jun, 2021
Like Article
Save Article
Similar Reads