#include "army.h" int fact(int n) { if (n <= 1) return 1; else return n * fact(n - 1); } int main() { int i; for (i = 0; i < 10; i++) { int v = fact(i); PRINT_INT(v); } EXIT(0); /* program ends here */ /* control never reaches here */ return 0; }