Chapter 15: Problem 36
Suppose a class named Tiger is derived from both the Felis class and the Carnivore class. Here is the first line of the Tiger class declaration: class Tiger : public Felis, public carnivore Here is the function header for the Tiger constructor: Tiger (int \(x,\) int \(y\) ) : Carnivore (x), Felis(y) Which base class constructor is called first, carnivore or Felis?