Skip to content
Related Articles
Open in App
Not now

Related Articles

Algorithms | Recursion | Question 5

Improve Article
Save Article
Like Article
  • Difficulty Level : Easy
  • Last Updated : 28 Jun, 2021
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
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!