Discription About Program

1.Fibonacci series C program.
2.Using the code below you can print as many terms of the series as required.
3. Numbers of this sequence are known as Fibonacci numbers.
4. The first few numbers of the series are 0, 1, 1, 2, 3, 5, ...,. Except for the first two terms of the sequence, every other term is the sum of the previous two terms.

For Example:-

   #include<stdio.h>
   void main()
   {
   int f=0,s=1,next,i,no;
   printf("enter the no item");
   scanf("%d",&no);
   printf("first %d term of fabonncci series",no);
   for(i=0;i
   {
   next=f+s;
   printf("%d",next);
	   f=s;
	   s=next;
	 }
 }