GMGabriel Monteiroingmonteiro13.hashnode.dev·Mar 27, 2021 · 5 min readThe basics of recursion in CIf you are new to programming, you've probably been given a task to write a factorial number algorithm. Of course, you can do it iteratively, like this: #include <stdio.h> int iterative_factorial(int number) { int result; result = number...00