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);
}
…
0
votes
What happens under the hood when one Method Calls Another?
(assuming x86)
First you have to understand the stack.
Functions use an area of memory called the "stack". You can think of it like a stack of plates, where each plate contains a D …
