13
votes
What is the best way to learn recursion?
One of the simplest examples I have seen is calculating a factorial
unsigned int factorial(unsigned int n)
{
if (n <= 1) return 1;
return n * factorial(n-1);
}
…
