Question:What is function recursion? 

Answer When a function of body calls the same function then it is called as 'recursive function.' Example:
Recursion()
{
    printf("Recursion !");
    Recursion();
}
 

+ Report
Total Preview: 821
What is function recursion?
Copyright © 2024. Powered by Intellect Software Ltd