Question: In c++ write a recursive program to calculate the nth Fibonacci number. Name your function Fib(). It will take an integer parameter for the value
In c++ write a recursive program to calculate the nth Fibonacci number.
Name your function Fib(). It will take an integer parameter for the value of n, and return an integer that is the nth Fibonacci number.
Name file review.cpp
header.h:
#pragma once
int Fib(int a);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
