Program to print sum of Fabonacci series and series in C-language

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

}

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

Comments

Popular posts

Creative pattern of butterfly in C-language

Program to show present time and date in C-language

Introduction of C-language.

Program to cheque enter number is a perfect number or not using if else in C-language

Program to cheque four digits number is palindrome or not in C-language

Program to print the cube of a number in c-language

Simple Hello world program in c- language