What is recursion?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
A function that calls itself in response to a terminating condition is said to be recursive.
Because it employs LIFO, the stack data structure is used.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nashiinformaticssolutions
Recursion occurs when a function calls itself directly or indirectly.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Recursion occurs when a function calls itself directly or indirectly.
| Is This Answer Correct ? | 0 Yes | 0 No |
Recursion occurs when a function calls itself directly or indirectly.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
A function that calls itself in response to a terminating condition is said to be recursive.
Because it employs LIFO, the stack data structure is used.
| Is This Answer Correct ? | 0 Yes | 0 No |
A function that calls itself in response to a terminating condition is said to be recursive.
Because it employs LIFO, the stack data structure is used.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the types of STL containers?
Difference between class and structure.
Can we make copy constructor private in c++?
how can u create a doubly linked list with out using pointers?
Can we declare destructor as static? Explain?
print first nodd numbers in descending order
Is rust better than c++?
how to explain our contribution in the project?
Define a program that reads two matrices of size 3x3 with real values from the user then prints their sum, difference and multiplication.
What are the main features of c++?
What is polymorphism in c++? Explain with an example?
Should a constructor be public or private?