Ejemplo n.º 1
0
// 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
Ejemplo n.º 2
0
int main()
{
	ATM atm;
	atm.run();
}