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 |
Is there a datatype string in c++?How is the memory allocation?
What are the different types of comments allowed in c++?
What are the defining traits of an object-oriented language?
How to write a program such that it will delete itself after exectution?
What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required
Which bitwise operator is used to check whether a particular bit is on or off?
What are the uses of static class data?
What is the most powerful coding language?
How do you add an element to a set in c++?
How to get the current position of the file pointer?
Define token in c++.
Explain function overloading