Computer Science, asked by dhanush2274, 6 months ago

how to write pseudocode for Fibonacci series?​

Answers

Answered by samikshajadhav16
1

Explanation:

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 nagmafatima79
2

Answer: pseudo code for fibonacci series are in the below image

Explanation:

Attachments:
Similar questions