Wrirte A Program To Generate A Fibonacci Series
Fibonacci series program in C
#include<stdio.h>
int main()
{
int n, first = 0, second = 1, next, c;
{
int n, first = 0, second = 1, next, c;
printf("Enter the number of terms\n");
scanf("%d", &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);
}
{
if (c <= 1)
next = c;
else
{
next = first + second;
first = second;
second = next;
}
printf("%d\n", next);
}
return 0;
}
}
Fibonacci series C program using recursion
#include<stdio.h>
int f(int);
int main()
{
int n, i = 0, c;
{
int n, i = 0, c;
scanf("%d", &n);
printf("Fibonacci series terms are:\n");
for (c = 1; c <= n; c++)
{
printf("%d\n", f(i));
i++;
}
{
printf("%d\n", f(i));
i++;
}
return 0;
}
}
int f(int n)
{
if (n == 0 || n == 1)
return n;
else
return (f(n-1) + f(n-2));
}
{
if (n == 0 || n == 1)
return n;
else
return (f(n-1) + f(n-2));
}
No comments:
Post a Comment