A function that calls itself directly or indirectly is known as a _______ function.
- recursive
- iterative
- overloaded
- main
A function that calls itself, either directly or by calling another function that eventually results in the original function being called again, is termed recursive.
Loading...
Related Quiz
- Which function is used to read a single character from a file in C++?
- Which keyword is used to catch exceptions in C++?
- The _______ statement is used to prematurely exit a switch-case block.
- In professional C++ coding, it is often recommended to avoid using break and continue in favor of _______.
- Which parameter-passing method does not allow the function to modify the actual argument?