Computer Science, asked by shreysthb, 10 months ago

Given the following code. Show the dry run/ working .
int fun(int a, int b)
{
if(b == 0)
return 0;
if(b % 2 == 0)
return fun(a + a, b/2);
return fun(a + a, b/2) + a;
}​

Answers

Answered by swainpriyabrata234ch
0

Answer:

so sorry I can't understand your question

please write it in a proper manner

Similar questions