0
0
This commit is contained in:
2021-08-18 08:58:13 +02:00
parent 8a4d0c604e
commit 42ec1c77f8
10 changed files with 206 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ex04.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tkondrac <tkondrac@student.42lausan> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/08/11 12:16:43 by tkondrac #+# #+# */
/* Updated: 2021/08/11 12:19:42 by tkondrac ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
#include "../ex04/ft_fibonacci.c"
int main(void)
{
int i;
i = -3;
while (i < 10)
{
printf("index %d : %d\n", i, ft_fibonacci(i));
i++;
}
return (0);
}