Class book
{
private:
char title [30];
char author [];};
{
private:
char title [30];
char author [];};
Class publication { public: char title [30]; char editor [30]; char publisher [30]; };
Class publication { public: char title [30]; char publisher [30]; }; class book: public publication { private: char author [30]; char ISBN [20]; };
class magazine: public publication { private: char editor [30]; };
Comment