0
What is recursion?
4 Answers
+ 2
function that call itself is called recursion
+ 1
using a function inside the the same using it's name is known as recursion. it's work like a loop
+ 1
recursion is used when you have to perform a same task many times,
0
recursion: A function calling itself directly or indirectly through another function.