what is recursion in c
Answers
Answered by
2
Recursion is a programming technique that allows the programmer to express operations in terms of themselves. In C, this takes the form of a function that calls itself. A useful way to think of recursive functions is to imagine them as a process being performed where one of the instructions is to "repeat the process".
1159pkumar:
14 is my age
Answered by
2
recursion in c
Recursion is the process of repeating items in a self-similar way.
In programming languages, if a program allows you to call a function inside the same function, then it is called a recursive call of the function.
The C programming language supports recursion, i.e., a function to call itself.
Similar questions