summaryrefslogtreecommitdiff
path: root/graphs/piscine/fact/fact.c
blob: 1440c94cde7742f87bfcf780fd882073ed95e211 (plain)
1
2
3
4
5
6
7
8
unsigned long fact(unsigned n)
{
    if (n == 0)
    {
        return 1;
    }
    return n * fact(n - 1);
}