Question: 20
(Choose 1 answer)
Consider the following function:
int fun(int n)
{if (n<0)
return(fun(-n));
else if(n<5)
}
return(2);
else
return(n*fun(n/2));
Which call will result in the most recursive calls?
A. fun(-1012);
B. fun(100);
C. fun(0);
D. fun(1012);