1
2
3
4
5
6
7
int factorial_iter(int n)
{
    int i, result = 1;
    for(i=1; i<=n; i++)
        result = result * i;
    return(result);
}
cs