841
if else if else if else
(programming.dev)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
That's just "recurrence." The same as a "while" loop. Recursion is specifically when a procedure invokes itself.
Fair enough. Point is nothing is getting smaller except the call stack.
The thing that's getting smaller is the "complexity" or "distance from the trivial case" of the function invocation. This is an informal notion though.