Q:

Fibonacci series in C

0

Fibonacci series in C

 

Fibonacci series in C using a loop ,You can print as many terms of the series as required. The numbers of the sequence are known as Fibonacci numbers.

The first few numbers of the series are 0, 1, 1, 2, 3, 5, 8, ..., except for the first two terms of the sequence, every other is the sum of the previous two, for example, 8 = 3 + 5 (sum of 3 and 5).

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <stdio.h>
int main()
{
  int n, first = 0, second = 1, next, c;

  printf("Enter the number of terms\n");
  scanf("%d", &n);

  printf("First %d terms of Fibonacci series are:\n", n);

  for (c = 0; c < n; c++)
  {
    if (c <= 1)
      next = c;
    else
    {
      next = first + second;
      first = second;
      second = next;
    }
    printf("%d\n", next);
  }

  return 0;
}

output:

Enter the number of terms

3

First 3 terms of Fibonacci series are:

0

1

1

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now