Vision and dreams are the blueprints of soul and achievements.
-Mohammed Ahmed F

Fibonacci Series

Fibonacci Series

    #include <stdio.h>
    #include <conio.h>
    void main()
    {
          int a,b,c,i,n;
          clrscr();
          a=0;
          b=1;
          printf("\n Enter n for how many times generate series");
          scanf("%d",&n);
          printf("\n FIBONACCI SERIES \n");
          printf("\t%d\t%d",a,b);
          for(i=0;i<n;i++)
         {
             c=a+b;
             a=b;
             b=c;
             printf("\t%d",c);
         }
         getch();
    }

Share this

Related Posts

Dear User,

Thank you for your comment. Hope you like this blog. Kindly share us on Social Media so others can be updated.

-Chief Administrative Officer.

Note: only a member of this blog may post a comment.