Recursion-Based Algorithms in C — a practical guide to C recursion algorithms with clear examples you can reuse in real projects.
C Programming Tutorial Series (96/102). Prefer one article? Read the complete C programming tutorial.
Short description
Convert to iterative forms when stack depth is a concern.
Recursion algo tip
Base case first
Progress toward base
Mind stack usage
Memoize when overlapping subproblems