размер производного класса в виртуальном наследовании
#c #oop #polymorphism #virtual-machine Вопрос: #include "stdafx.h" #include <iostream> using namespace std; class ClassA { protected: int width, height; public: void set_values(int x, int y) { width = x; height…