Important Note:Login & Check Your Email Inbox and Activate Confirmation Link |
---|
Section 107 of the Copyright Act Fair Use Contents . We are forwarding content link(s) from our website to content website & We are not serving any contents. Main Source:Google.com.All the Content PDF link(s) is/are obtained from GoogleSearch for the purpose of Education & Teaching Intention. Not for commercial purpose. Technicalsymposium.com is not liable/responsible for any copyright issues. |
---|
|
---|
C Program for fibanacci series using recursion.
void main()
{
int a,b,i,c;
clrscr();
printf("Enter the N value");
scanf("%d",&a);
for(i=0;i
{
printf("\n%d",fib(i));
}
getch();
}
int fib(int x)
{
if(x==0)
return(0);
if(x<=1)
{
return(1);
}
else
{
return(fib(x-1)+(fib(x-2)));
}
}
|
---|
|
---|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
|
![]() |
![]() |
|
![]() |
---|
![]() |
Official Contact: +91-9245556793 (Whatsapp Message / SMS / Voice Call)Our Expert team is ready to answer all your questions immediately-Feel free to speak in Tamil/English. (Example:Events info/Lecture Notes/Off-Campus & All Jobs/Projects & All education information) Working hrs (IST): (Morning: 10:00AM-3:00 PM) and (Evening:5:00 PM to 10:00 PM)
|
---|