Can a struct be inherited in C++?
struct
Yes. The inheritance is public by default.
Syntax (example):
struct A { }; struct B : A { }; struct C : B { };