Questions
Tags
Can a struct be inherited in C++?
struct
This question is related to c++ inheritance struct
c++
inheritance
Yes, struct is exactly like class except the default accessibility is public for struct (while it's private for class).
class
public
private