to define a recursive function used
Answers
Answered by
0
Answer:
A recursive function is a function that calls itself during its execution. The process may repeat several times, outputting the result and the end of each iteration. The function Count() below uses recursion to count from any number between 1 and 9, to the number 10. ... Count(7) would return 8,9,10.
Similar questions