Question: Question. How many times will the following function call itself if 5 is passed as the argument? void showMessage(int n) { if (n > 0)
Question.
How many times will the following function call itself if 5 is passed as the argument?
void showMessage(int n)
{
if (n > 0)
{
cout << "Good day!" << endl;
showMessage(n + 1);
}
}
Possible answers:
5, 6, 1, 4, or infinite
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
