/////// File: JointAccount.C /////// #include #include "JointAccount.H" JointAccount::JointAccount (unsigned n, double b, char* owner, char* jowner) : Account (n, b, owner) { strncpy (_jss, jowner, SS_LEN); } void JointAccount::Display (ostream& out) const { out << "Account No: " << _acct_no << "\n" << "Owner SS: " << _ssn << "\n" << "Joint Owner SS: " << _jss << "\n" << "Balance: " << GetBalance() << endl; }