Before start the programming you need to know exactly what is the Fibonacci series, why it comes around the world??
Golden mean:
Program:
/* Fibonacci Series c language */#include<stdio.h>int main(){int n, first =0, second =1, next, i;printf("Enter the number of termsn");scanf("%d",&n);printf("First %d terms of Fibonacci series are :-n",n);for( i =0; i < n ; i++){if( i <=1)
next = i;else{
next = first + second;
first = second;
second = next;}printf("%dn",next);}return0;}
When you login first time using a Social Login button, we collect your account public profile information shared by Social Login provider, based on your privacy settings. We also get your email address to automatically create an account for you in our website. Once your account is created, you'll be logged-in to this account.
DisagreeAgree
Connect with
I allow to create an account
When you login first time using a Social Login button, we collect your account public profile information shared by Social Login provider, based on your privacy settings. We also get your email address to automatically create an account for you in our website. Once your account is created, you'll be logged-in to this account.