top of page

A C program that will generate the fibonacci series starting from any two numbers

  • Writer: Nelson John
    Nelson John
  • Nov 26, 2017
  • 1 min read

#include<stdio.h>

int main() {

int first, second, sum, num, counter = 0;

printf("Enter the term : ");

scanf("%d", &num);

printf("\nEnter First Number : ");

scanf("%d", &first);

printf("\nEnter Second Number : ");

scanf("%d", &second);

printf("\nFibonacci Series : %d %d ", first, second);

while (counter < num) {

sum = first + second;

printf("%d ", sum);

first = second;

second = sum;

counter++;

}

return (0);

}

Facebook: ayamnelrodinho1@gmail.com

Yahoo: talk2nelsonjohn2dat@yahoo.com

Whatsapp: +2349034595610

PLEASE KINDLY SHARE WITH FELLOW PROGRAMMERS AND ALSO SUBSCRIBE TO MY BLOG PAGE FOR MORE FEEDS.


 
 
 

Comentários


bottom of page