factorial function
Write a C function that computes the factorial of a number n (integer) as in exercise
The factorial function is a typical recursive problem. Rewrite the equation defining the factorial function in a recursive form.
Write the recursive version of the code and call the function function facto_rec.