(Choose 1 answer)
A. 5
B. 2
C. 3
D. 4
int h(int n)
{if (n == 0 || n==1)return(1);
else
return(h(n-1)+h(n-2));
}
Suppose the h(n) function is defined on the set of integer numbers as below.For the call h(3), how many calls to h will be made, including the original call?
Ext 24
antonis ni