Q. Find the output of below program.
Code:
class Mycpp
{
};
int main()
{
Mycpp obj;
return 0;
}
β
Correct Answer: (B)
Nothing would be printed
class Mycpp
{
};
int main()
{
Mycpp obj;
return 0;
}
You must be Logged in to update hint/solution