Will a recursive function without an end condition every quit, in practice
a) Compiler-Specific (Some can convert to an infinite loop)
b) No
c) Yes
No Answer is Posted For this Question
Be the First to Post Answer
What is name mangling?
Define token in c++.
What does iomanip mean in c++?
What are the operators in c++?
give me some class & objects examples?
Is swift better than c++?
Explain linked list using c++ with an example?
Is there a datatype string in c++?How is the memory allocation?
What do you mean by call by value and call by reference?
Where the memory to the static variables is allocated?
What is the basic difference between C and C++?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }