#include #include "09-Exercice1-Module.h" int main(void) { for (int i = 0; i < 20; i++) { printf("%2d! = %18lld\n", i, factoriel(i)); } return 0; }