Pages

Tuesday, November 10, 2015

C Program for fibobacci series

/*
The Fibonacci Sequence is the series of numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ... The next number is found by adding up the two numbers before it. The 2 is found by adding the two numbers before it (1+1)
*/

Program

#include<stdio.h>
void main()
{
int n, first = 0, second = 1, next, c;

printf("Enter the number of terms\n");
scanf("%d",&n);

printf("First %d terms of Fibonacci series are :-\n",n);

for ( c = 0 ; c < n ; c++ )
{
if ( c <= 1 )
next = c;
else
{
next = first + second;
first = second;
second = next;
}
printf("%d\n",next);
}


}

Output
Enter the number of terms
10
First 10 terms of Fibonacci series are :-
0
1
1
2
3
5
8
13
21

34

No comments:

Post a Comment