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?
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.