Skip to content

JeninSutradhar/Account-Management-Program

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Account Management Program

This is a simple banking system program written in C++.

Usage

  1. Clone the repository to your local machine.
  2. Compile the program.
  3. Run the executable.
  4. Follow on-screen instructions to interact with the banking system.

#Uwage Follow the on-screen instructions to interact with the banking system. You can add accounts, deposit, and withdraw funds, and view transaction history.

Bank bank;

Account account1("John Doe", 12345, 1000.0); Account account2("Jane Doe", 67890, 500.0);

bank.addAccount(account1); bank.addAccount(account2);

bank.deposit(12345, 500.0); bank.withdraw(12345, 200.0); bank.withdraw(12345, 1500.0);

bank.displayTransactions();

Compilation

You can compile the program using g++:

g++ main.cpp -o banking_system

About

Account Management Program or Banking System using C++/CPP

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages