Question: ` ` ` class Parent { public: virtual void method ( ) { } std::cout from PARENT std::endl; virtual ~Parent ( ) { } void

```
class Parent
{
public:
virtual void method()
{
}
std::cout "from PARENT" std::endl;
virtual ~Parent(){}
void baseMethod(){}
};
class Child : public Parent
{
public:
void method()
{
}
std::cout "from CHILD" std::endl;
~Child(){}
};
```
What is will the following code output?
```
int main(void)
{
Parent* item = new Child();
item->method();
delete item;
return 0;
```
` ` ` class Parent { public: virtual void method

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!