Fibonacci series # include <stdio.h> int main () { int n, first = 0 , second = 1 , next, i; printf ( "Enter the number of terms: &qu…