1 2 3 4 5 6 7 8
int fib (int n) { if (n <= 1) return 1; return n * fib(n - 1); } int main (int argc, char** argv) { return fib(argc); }