0 votes
in Other by

What is a recursive function?

1 Answer

0 votes
by

A recursive function is a function that calls itself directly or calls a function that in turn calls it.

Every recursive function follows the recursive properties base criteria where functions stop calling itself and progressive approach where the function tries to meet the base criteria in each iteration.

...