C
Programming and Technical
Q. What is function recursion?
A. When a function of body calls the same function then it is called as 'recursive function.'
Example:
Recursion()
{
printf("Recursion !");
Recursion();
}
Read Solution (Total 0)
C Other Question