mirror of
https://github.com/Ladebeze66/Piscine42.git
synced 2025-12-16 05:58:07 +01:00
21 lines
1.0 KiB
C
Executable File
21 lines
1.0 KiB
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_recursive_factorial.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/12/12 11:02:42 by fgras-ca #+# #+# */
|
|
/* Updated: 2022/12/12 11:17:18 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
int ft_recursive_factorial(int nb)
|
|
{
|
|
if (nb < 0)
|
|
return (0);
|
|
if (nb == 0)
|
|
return (1);
|
|
return (nb * ft_recursive_factorial(nb - 1));
|
|
}
|