0
4.6kviews
Explain recursive function. Write a program to find the GCD of a number by using recursive function.
1 Answer
0
344views

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 …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.