#include struct BankAccount { float balance; // Account balance std::string name; // Account name void initialise(std::string name); void deposit(float amount); void withdraw(float amount); void transfer(BankAccount& to, float amount); };