1
2
3
4
5
6
int factorial(int n)
{
    printf("factorial(%d)\n",n);
    if( n <= 1 ) return(1);
    else return (n * factorial(n-1) );
}
cs