Answers for "fibonacci series c program"

C
2

fibonacci series in c using function

#include<stdio.h>

void fibonacciSeries (int range);

void main()
{
   int range;

   printf("Enter range: ");
   scanf("%d", &range);

   printf("\nThe Fibonacci series is: \n");

   fibonacciSeries(range);

}

void fibonacciSeries(int range)
{
   int a=0, b=1, temp;

   while (a<=range)
   {
     printf("%d\t", a);
     temp = a+b;
     a = b;
     b = temp;
   }

}
Posted by: Guest on June-23-2021
6

fibonacci series in c

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    
 {    
  n3=n1+n2;    
  printf(" %d",n3);    
  n1=n2;    
  n2=n3;    
 }  
  return 0;  
 }
Posted by: Guest on August-06-2020
0

fibonacci series c program

#include <stdio.h>
int main() {
    int i, n, t1 = 0, t2 = 1, nextTerm;
    printf("Enter the number of terms: ");
    scanf("%d", &n);
    printf("Fibonacci Series: ");

    for (i = 1; i <= n; ++i) {
        printf("%d, ", t1);
        nextTerm = t1 + t2;
        t1 = t2;
        t2 = nextTerm;
    }

    return 0;
}
Posted by: Guest on January-09-2021
0

fibonacci series in c

#include <stdio.h>
int main() {
    int t1 = 0, t2 = 1, nextTerm = 0, n;
    printf("Enter a positive number: ");
    scanf("%d", &n);

    // displays the first two terms which is always 0 and 1
    printf("Fibonacci Series: %d, %d, ", t1, t2);
    nextTerm = t1 + t2;

    while (nextTerm <= n) {
        printf("%d, ", nextTerm);
        t1 = t2;
        t2 = nextTerm;
        nextTerm = t1 + t2;
    }

    return 0;
}
Posted by: Guest on July-18-2020

Code answers related to "fibonacci series c program"

Code answers related to "C"

Browse Popular Code Answers by Language