Question: Consider the following code fragment: class Animal { public: void Eats() { cout < < Eats food. < < endl; } }; class Lion :

Consider the following code fragment: class Animal { public: void Eats() { cout << "Eats food." << endl; } }; class Lion : public Animal { public: Lion() : Animal(), m_name("Leo") {} Lion(string name) : Animal(), m_name(name) {} void Eats() { cout << m_name << " eats meat." << endl; } void Sleep() { cout << "Ahh...a nice nap!" << endl; } private: string m_name; }; * What output will the following code fragment produce? Animal *leo = new Lion("Leo") ; leo->Eats() ;

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 Databases Questions!