C++ RecursionWhen 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 known as tail recursion. In tail recursion, we generally call the same function with return statement. Let's see a simple example of recursion. C++ Recursion ExampleLet's see an example to print factorial number using recursion in C++ language. Output: Enter any number: 5 Factorial of a number is: 120 We can understand the above program of recursive method call by the figure given below: ![]()
Next TopicC++ Storage Classes
|
JavaTpoint offers too many high quality services. Mail us on h[email protected], to get more information about given services.
JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Please mail your requirement at [email protected].
Duration: 1 week to 2 week