#include #include "JointAccount.h" JointAccount::JointAccount (unsigned n, double b, char* owner, char* jowner) : Account(n, b, owner) { strcpy(jss, jowner); } void JointAccount::display(ostream& out /* = cout */) const { out << "Account No: " << acct_no << "\n" << "Owner SS: " << ss << "\n" << "Joint Owner SS: " << jss << "\n" << "Balance: " << balance() << endl; }