Q. What is the output of this program?
Code:
#include
using namespace std;
void function(int p, bool condition = true)
{
if (condition == true )
{
cout << "Condition is true. P = " << p;
}
else
{
cout << "Condition is false. P = " << p;
}
}
int main()
{
function(250, false);
return 0;
}
β
Correct Answer: (C)
Condition is false. P = 250