summaryrefslogtreecommitdiff
path: root/graphs/piscine/number_digits_rec/number_digits_rec.c
blob: 94de29646b9a32bbef861c23edc59c324565f225 (plain)
1
2
3
4
5
6
7
8
unsigned int number_digits_rec(unsigned int n)
{
    if (n / 10 == 0)
    {
        return 1;
    }
    return 1 + number_digits_rec(n / 10);
}