#include<stdio.h> #include<conio.h> int main() { int first,second,sum,num,counter=0; clrscr(); printf("Enter the term : "); scanf("%d",&num); printf("\nEnter First Number : "); scanf("%d",&first); printf("\nEnter Second Number : "); scanf("%d",&second); printf("\nFibonacci Series : %d %d ",first,second); while(counter< num) { sum=first+second; printf("%d ",sum); first=second; second=sum; counter++; } getch(); }
Output :
Enter the term : 5 Enter First Number : 1 Enter Second Number : 3 Fibonacci Series : 1 3 4 7 11 18 29
Incoming search terms:
- a program in c that generates a term for a given sequence (1)
- write a c program to generate the series 1 3 4 7 11 18 (1)
- to print sum of 1 to 10 natural numbers using while loop (1)
- program to create a linked list of fibonacci series (1)
- print fibonacci series between any two numbers in c (1)
- fibonacci series using pointer (1)