Question: 14. Write a Function in c++ program to generate Fibonacci series.Your function prototype should be void printFibonacci(int n), where n is the user given input
14. Write a Function in c++ program to generate Fibonacci series.Your function prototype should be void printFibonacci(int n), where n is the user given input to print n terms of the Fibonacci series. Call printFibonacci function from main function. (5 Points) Sample output: Enter number of terms of Fibonacci series you want: 9 First 9 terms of the Fibonacci series are 0, 1, 1,2, 3, 5, 8, 13,21 (Hint: The Fibonacci Sequence is the series of numbers: 0, 1, 1,2,3, 5,8, 13, 21, 34, The next number is found by adding up the two numbers before it.)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
