English, asked by jesusmaadhu, 4 months ago

Explain recursive function with its syntax.​

Answers

Answered by kamakshinegi68
1

Explanation:

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 leya031162
1

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.

Similar questions