+ 1
How to wap program of febonasi with function
Function related program
5 Réponses
+ 4
What do you mean by "febonasi"? Do you mean "Fibonacci"? Clarify please.
If you want to solve this task and need help, you need to TAG THE RELEVANT PROGRAMMING LANGUAGE and show your own code attempt.
+ 1
Yes sorry 😞 spelling mistake fibonacci??
+ 1
You still haven't done the rest of what Lisa pointed out. We aren't going to do the work for you so you need to show the attempt and the programming language is important.
+ 1
# include <stdio.h>
Void main()
{
Int a=0,b=1,c=1 ,n,i;
Printf ("how many");
scanf("%d",&n);
for(i=1;i<=n;i++)
Printf("%d\n",c);
c=a+b;
a=b;
b=c;
getch();
}
+ 1
Please ⭐TAG THE RELEVANT PROGRAMMING LANGUAGE⭐
You can LINK your code like this:
Go to Code section, click +, select the programming language, insert your code, save.
Come back to this thread, click +, Insert Code, sort for My Code Bits, select your code.
Check the spelling in your code.