(c) What do you understand by recursive function?
Explain with example.
(B-1) P.T.O.
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.
Answered by
2
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....
Similar questions