WSQ06 – Factorial Calculator

I completed the task of making a program that calculates the factorial of a number. I learnt the Mastery Topic #13 & #16, do while loops and recursions. I created a function called factorial that used a recursion to repeat the same operation several times. This is my function: int factorial (int n){ int answer; … Continuar leyendo WSQ06 – Factorial Calculator