Correct Answer: Option C — A function calling itself
Explanation:
Recursion is a programming technique where a function calls itself to solve smaller instances of a problem, typically with a defined base ca...
Recursion is a programming technique where a function calls itself to solve smaller instances of a problem, typically with a defined base case to stop.