What is the inheritance concept called, that is shown in the code ?
class Character {}; class Warrior : public Character{ public: int block; };
derivation
redefinition
specialization
none, this code does not work