Fibonacci Series using Recursion
This is C program to print fibonacci series using recursion.
You can compile this program on bOtskOOl Free Online C/C++ Compiler
SOURCE CODE
//A C example to display Fibonacci Series using Recursion
/*
**********************
www.botskool.com
**********************
*/
#include<stdio.h>
#include<conio.h>
long term(int);
void main()
{ int i,n;
clrscr();
printf("How many terms do you wish to find?");
scanf("%d",&n);
printf("\nThe Series is : \n");
for(i=1;i<=n;i++)
{
printf(" %ld ",term(i));
}
getch();
}
long term(int n)
{
if(n==1||n==2)
return 1;
else
return(term(n-1)+term(n-2));
return 0;
}
/*
**********************
www.botskool.com
**********************
*/
Output of the above program will be like this -

Terms of Agreement:
By using this code, you agree to the following terms-
1) You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
2) You MAY NOT redistribute this code (for example to a web site) without written permission from us. Failure to do so is a violation of copyright laws.
3) You may link to this code from another website, but ONLY if it is not wrapped in a frame.
4) You will abide by any additional copyright restrictions which may have placed in the code or code's description.
>>Kindly post your doubts and suggestions on our discussion forum.
Tags:




Recent comments
11 weeks 10 hours ago
1 year 8 weeks ago
1 year 11 weeks ago
1 year 11 weeks ago
1 year 12 weeks ago
1 year 13 weeks ago
1 year 14 weeks ago
1 year 14 weeks ago
1 year 18 weeks ago
1 year 18 weeks ago