Write a C program to add the first 50 items of Fibonacci Sequence 1, 1, 2, 3, 5, 8, 13, 21………………50th item
Expert Answer
C Program:
#include <stdio.h>
#include <stdlib.h>
//Main function
int main()
{
//Terms in the series
double f0 = 1, f1 = 1, f2, sum;
int i;
//Calculating sum
sum = f0 + f1;
//Generating and printing from third term
for(i=3; i<=50; i++)
{
//Finding third term
f2 = f0 + f1;
//Updating sum
sum = sum + f2;
//Swapping first and second term with third term
f0 = f1;
f1 = f2;
}
//Calling function and printing result
printf(“nn Sum of first 50 items of Fibonacci Sequence: %.f nn”, sum);
return 0;
}
________________________________________________________________________________________________
Sample Output: