100% recursion function to get hEmachandra (/fibonacci) series

// Online C compiler to run C program online
#include"stdio.h"
int fibonacci(int n)
{
   if (n==0
       return 0;
else if n==1
   return 1;
else
 return (fibonacci(n-1) + fibonacci(n-2));
}
int main()
{
    int  i,p, temp;
    printf("\n enter no of terms required in hemachandra series:");
    scanf("%d",&p);
    for(i=0;i<p;i++)
      {
          temp=  fibonacci(i);
          printf("\n %d",temp);
}
}
తెరమీద 
enter no of terms required in hemachandra series:7
0
 1
 1
 2
 3
 5
 8

కామెంట్‌లు

ఈ బ్లాగ్ నుండి ప్రసిద్ధ పోస్ట్‌లు

100% C prog to write content into a file and then read it back onto the console

Spic macay

శ్రీరస్తు.. రామలింగ 18-1-24 (సూరసాని వారి ఆహ్వానము)