0
781views
What is Recursion?
1 Answer
0
5views

When a function in turn calls another function a process of ‘chaining’ occurs. Recursion is a special case of this process, where a function calls itself.

Eg:

1)

main() 
{ 
printf(“Example for recursion”); 
main(); 
}

Functions with Arrays

To pass an array to a called function, it is sufficient to …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.