R
Q. What is the output of below program?
Code:
int main()
{
if(0)
{
cout<<"Hi";
}
else
{
cout<<"Hello";
}
return 0;
}
{
if(0)
{
cout<<"Hi";
}
else
{
cout<<"Hello";
}
return 0;
}
- Correct Answer - Option(B)
- Views: 142
- Filed under category C++
Discusssion
Login to discuss.