index
:
ING1-Workshops.git
main
Ateliers ING1 2024-2025
Marcellus
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
rushs
/
evalexpr
/
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); }