C Program to Sum of Fibonacci Series

C Program to Sum of Fibonacci Series

Sum of fibonacci series in c; Through this tutorial, we will learn how to find sum of fibonacci series using for loop, while loop and function in c programs.

Programs to Sum of Fibonacci Series in C

Let’s use the following programs to find sum of fibonacci series using while loop, for loop and function in c:

  • C Program to Sum of Fibonacci Series using For Loop
  • C Program to Sum of Fibonacci Series using While Loop
  • C Program to Sum of Fibonacci Series using Function

C Program to Sum of Fibonacci Series using For Loop

#include <stdio.h>
int main()
{
	int Number, Next, Second = 1, sum = 0;

	printf("\n Please Enter the Range Number: ");
	scanf("%d",&Number);
	
	for(int First = 0; First <= Number;) 
	{
		printf("%d ", First);
      	        sum = sum + First;
      	        Next = First + Second;
		First = Second;
      	        Second = Next; 
	}
	printf("\nThe Sum = %d\n", sum);
}

The output of the above c program; is as follows:

Please Enter the Range Number: 10
0 1 1 2 3 5 8 
The Sum = 20

C Program to Sum of Fibonacci Series using While Loop

#include<stdio.h>
 
int main()
{
   int Number, First = 0, Second = 1, Next = 0, sum = 0;
 
   printf("Enter Maximum Number for Fibonacci Series = ");
   scanf("%d", &Number);
 
   printf("First %d Fibonacci Series Numbers:\n", Number);
 
   while( First <= Number)
   {
      printf("%d ", First);
      sum = sum + First;
      Next = First + Second;
      First = Second;
      Second = Next; 
   }
   printf("\nThe Sum of Fibonacci Series Numbers = %d\n", sum);
}

The output of the above c program; is as follows:

Enter Maximum Number for Fibonacci Series = 5
First 5 Fibonacci Series Numbers:
0 1 1 2 3 5 
The Sum of Fibonacci Series Numbers = 12

C Program to Sum of Fibonacci Series using Function

#include<stdio.h>

int fibonacciSeries(int Number)
{
   if ( Number == 0 )
      return 0;
   else if ( Number == 1 )
      return 1;
   else
      return ( fibonacciSeries(Number - 1) + fibonacciSeries(Number - 2) );
} 
 
int main()
{
   int Number, i = 0, j, sum = 0;
 
   printf("\nEnter Maximum Number = ");
   scanf("%d", &Number);
 
   printf("Fibonacci Series Numbers up to %d:\n", Number);
 
   for ( j = 0 ; j < Number; j++ )
   {
      printf("%d   ", fibonacciSeries(j));
      sum = sum + fibonacciSeries(j);
   }
     printf("\nThe Sum = %d\n", sum);
}

The output of the above c program; is as follows:

Enter Maximum Number = 5
Fibonacci Series Numbers up to 5:
0   1   1   2   3   
The Sum = 7

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

Your email address will not be published. Required fields are marked *