// The function for finding the Fibonacci number
int fib(int);
int main()
{
// Prompt the user to enter an integer
cout << "Enter an index for the Fibonacci number: ";
int index;
cin >> index;
// Display factorial
cout << "Fibonacci number at index " << index << " is "
<< fib(index) << endl;
return 0;
}
// The function for finding the Fibonacci number
int fib(int index)
{
if (index == 0) // Base case
return 0;
else if (index == 1) // Base case
return 1;
else // Reduction and recursive calls
return fib(index - 1) + fib(index - 2);
}
[/php]
So i have that code, and i'm supposed to find the number of times the 'fib' function is called.