Computer Science, asked by leher5115, 4 months ago

5. Write a program to display Fibonacci
series upto 10 terms starting from 0,1​

Answers

Answered by aarushchoudhary59
5

Explanation:

Fibonacci Series up to n terms

#include <stdio.h>

int main() {

int i, n, t1 = 0, t2 = 1, nextTerm;

printf("Enter the number of terms: ");

scanf("%d", &n);

printf("Fibonacci Series: ");

for (i = 1; i <= n; ++i) {

printf("%d, ", t1);

nextTerm = t1 + t2;

t1 = t2;

t2 = nextTerm;

}

return 0;

}

Similar questions