#include extern unsigned long factorielle(unsigned); int main() { unsigned i; for (i = 0; i < 20; i++) printf("%u: %lu\n", i, factorielle(i)); }