create a user defined function to display fibbonaci series upto n numbers.write main function and take input from the user
Answers
Answered by
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
Science,
3 months ago
Physics,
3 months ago
Physics,
7 months ago
Chemistry,
11 months ago
Business Studies,
11 months ago