-
Base Class Destructor
In C++, which of following statements accurately describe a base class destructor calling a virtual function override of a derived class?A. the base class destructor calls the virtual function of the base class and not of the derived class.B. the base class destructor calls the virtual function override of the derived class through th vtable.C. the C++ compiler maintains the overridden virtual function...