Q. What is the output of below program?
Code:int main()
{
if(-1 == -1){
cout<<"Hey..";
}
else{ cout<<"mcqbuddy.com";
}
return 0;
}
β
Correct Answer: (A)
Hey..
int main()
{
if(-1 == -1){
cout<<"Hey..";
}
else{ cout<<"mcqbuddy.com";
}
return 0;
}
You must be Logged in to update hint/solution