#include int fact(int n) { if (n < 1) return(1); else return(n*fact(n-1)); } main() { printf("The factorial of 10 is %d\n", fact(10)); }