# include
#include
void main()
{
int a,b,c,num,I; /*variables*/
a=0;
b=1;
printf("how many number you want");
scanf("%d",&num);
for(I=0;I
C program for Fibonacci series using a loop and recursion. Using the code below you can print as many terms of the series as required. Numbers of this 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 term is the sum of the previous two terms, for example, 8 = 3 + 5 (addition of 3 and 5). This sequence has many applications in Mathematics and Computer Science.
/* Fibonacci series program in C language */
#include <stdio.h>
int main()
{
int n, first = 0,
second = 1, next, c;
printf("Enter
the number of termsn");
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("%dn",
next);
}
return 0;
}
if you want to learn c Programming, then you can get help from experts at CodeAvail- Online Computer Science Assignment
help
Didn't find the answer you were looking for?