#include "BankAccountCppStruct.h" #include using namespace std; int main() { BankAccount a, b; a.initialise("Stuart"); b.initialise("Bob"); a.deposit(5000); a.balance += 5000; cout << a.name << " " << a.balance << endl; cout << b.name << " " << b.balance << endl; b.deposit(50000); cout << a.name << " " << a.balance << endl; cout << b.name << " " << b.balance << endl; b.transfer(a, 40000); cout << a.name << " " << a.balance << endl; cout << b.name << " " << b.balance << endl; }