Program to print Fabonacci series to any term in C-language

#include<stdio.h>
int main()
{
 int n,a,b=1,c=0;
 printf("Enter any number of term\n");
 scanf("%d",&n);
 printf ("Fabonacci series is");
 for(int i=1;i<=n;i++)
 {
  printf("%d\,",c);
  a=b;
  b=c;
  c=a+b;
 }

}

OUTPUT
Enter any number of term
5
Fabonacci series is
0 ,1 ,1 ,2 ,3,

Comments

Popular posts

Creative pattern of butterfly in C-language

Introduction of C-language.

Variable & Datatype for C-programming

Program to see all ASCII value using for loop in C-language

Language Translator of C-language

Errors in C-language

Binary searching in C-language

Addition of two numbers in c language

Program to input an array elements and then display the same array in C-language