Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /******************************************************************************
- Online C Compiler.
- Code, Compile, Run and Debug C program online.
- Write your code in this editor and press "Run" button to compile and execute it.
- *******************************************************************************/
- #include <stdio.h>
- int
- ft_fibonacci (int index)
- {
- int z = 0;
- while ((z * z) < index)
- {
- z++;
- }
- if ((z * z) > index)
- {
- return (0);
- }
- else
- {
- return (z);
- }
- }
- int
- main ()
- {
- int index;
- ft_fibonacci (index);
- printf ("%d", ft_fibonacci (36));
- }
Advertisement
Add Comment
Please, Sign In to add comment