What happens when you attempt to compile and run the following code?

What happens when you attempt to compile and run the following code?

#include <iostream>

using namespace std;

class First

{

public:

void Print(){ cout<<"from First";}

};

class Second

{

public:

void Print(){ cout<< "from Second";}

};

int main()

{

First FirstObject;

FirstObject.Print();

Second SecondObject;

SecondObject.Print();

}
A . It prints: from First
B.It prints: from Firstfrom First
C.It prints: from Firstfrom Second
D.It prints: from Secondfrom Second

Answer: C

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments