Computer Science, asked by andrewicecloud12, 7 months ago

create a user defined function to display fibbonaci series upto n numbers.write main function and take input from the user

Answers

Answered by singh04pabhjot
1

Answer:

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) ...

hope it helps you

please follow me

Similar questions