// main function creates and runs the ATM int main() { ATM atm; // create an ATM object atm.run(); // tell the ATM to start return 0; } // end main
int main() { ATM atm; atm.run(); }