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

Post New Answer

More C++ General Interview Questions

What is name mangling?

3 Answers  


Define token in c++.

0 Answers  


What does iomanip mean in c++?

0 Answers  


What are the operators in c++?

0 Answers  


give me some class & objects examples?

1 Answers  






Is swift better than c++?

0 Answers  


Explain linked list using c++ with an example?

0 Answers  


Is there a datatype string in c++?How is the memory allocation?

3 Answers  


What do you mean by call by value and call by reference?

1 Answers  


Where the memory to the static variables is allocated?

0 Answers  


What is the basic difference between C and C++?

0 Answers   NIIT,


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; }

2 Answers   CDAC, Wipro,


Categories