write a programme to print fibinocis series
Answers
Answered by
0
Explanation:
Let's see the fibonacci series program in c without recursion.
#include<stdio.h>
int main()
{
int n1=0,n2=1,n3,i,number;
printf("Enter the number of elements:");
scanf("%d",&number);
printf("\n%d %d",n1,n2);//printing 0 and 1.
for(i=2;i<number;++i)//loop starts from 2 because 0 and 1 are already printed.
Answered by
0
Answer:
Let's see the fibonacci series program in c without recursion.
#include<stdio.h>
int main()
{
int n1=0,n2=1,n3,i,number;
printf("Enter the number of elements:");
scanf("%d",&number);
printf("\n%d %d",n1,n2);//printing 0 and 1.
for(i=2;i<number;++i)//loop starts from 2 because 0 and 1 are already printed.
Similar questions