What is recursive function in c and how it is different from ordinary function?
Answers
Answered by
0
recursion is a method to repete the similar things again and again.
so recursive function will call the function inside the same function. it invoke itself.
void sum()
{
sum()
}
but in ordinary function does not call itself it is called by the program during execution
Similar questions