/////// File JointAccount.h /////// #include "Account.h" class JointAccount : public Account // derive from Account { public: JointAccount(unsigned n, double b, // constructor char* owner, char* jowner); JointAccount() {} // default constructor private: char jss[SS_LEN]; // joint owner ss no. };