Monday, 9 May 2016

Fibonacci series in C Language

#include <stdio.h>
 
main()
{
   int n, first = 0, second = 1, next, c;
 
   printf("Enter the no of term\n");
   scanf("%d",&n);
 
   printf("First %d term Fibonacci series:-\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);
   }
 
   return 0;
}

No comments:

Post a Comment