Given the following code: struct Animal{ virtual void Feed()…
Given the following code: struct Animal{ virtual void Feed() = 0;};class Lion : public Animal {};class Tiger : public Animal {};class Bear : public Animal {}; What best describes the Animal class?
Read Details