can anyone help me how to write pseudocode for Fibonacci series?
Answers
Answered by
5
Answer:
Fibonacci Series 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:
answer is in the attachment
hope it helps you...
Attachments:
Similar questions