0
4.6kviews
Explain recursive function. Write a program to find the GCD of a number by using recursive function.
1 Answer
| written 6.7 years ago by | • modified 6.7 years ago |
Recursive function:
In C, a function can call itself. This process is known as recursion. And a function that calls itself is called as the recursive function.In programming languages, if a program allows you to call a function inside the same function, then it is called a recursive call of …