Program to generate Fibonacci series
#include #include #include void main() { clrscr(); //Declare an initialize the variables int firstNum = 0, secondNum = 1, fibNum, temp; //Accept a number from the user printf(“\nEnter the number: “); scanf(“%d”, &fibNum); /*Exit if value is less than 2*/ if(fibNum