91-9990449935 0120-4256464 |
Recursion in CWhen function is called within the same function, it is known as recursion in C. The function which calls the same function, is known as recursive function. A function that calls itself, and doesn't perform any task after function call, is know as tail recursion. In tail recursion, we generally call the same function with return statement. An example of tail recursion is given below. Let's see a simple example of recursion. Example of tail recursion in CLet's see an example to print factorial number using tail recursion in C language. Outputfactorial of 5 is 120 We can understand the above program of recursive method call by the figure given below:
Next TopicStorage classes in C
|