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; a. Suppose leo is a Lion object. What syntax would I use to invoke the Eats () method on leo? b. Suppose lionPtr is a pointer to a Lion object. What syntax would I use to invoke the Sleep () method on the Lion object pointed to by lionPtr?
Step by Step Solution
There are 3 Steps involved in it
In the given code fragment there are two classes Animal and Lio... View full answer
Get step-by-step solutions from verified subject matter experts
