what's the role of recursion in the field of software engineering?
Answers
Answered by
0
Answer:
Recursion is a method of program design where you break apart a problem into smaller repeatable subtasks. The program will complete each subtask later combined to achieve a solution. The primary feature that defines recursion is that a recursive function calls itself, either directly or indirectly during execution.
Similar questions