https://github.com/sanjay-1458/banking-system
A C++ project for banking, providing the minimal features of the banking system
https://github.com/sanjay-1458/banking-system
cpp oops stl stl-containers
Last synced: about 1 month ago
JSON representation
A C++ project for banking, providing the minimal features of the banking system
- Host: GitHub
- URL: https://github.com/sanjay-1458/banking-system
- Owner: sanjay-1458
- Created: 2024-01-24T14:06:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-24T14:20:58.000Z (over 1 year ago)
- Last Synced: 2025-02-17T16:31:07.087Z (4 months ago)
- Topics: cpp, oops, stl, stl-containers
- Language: C++
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Banking System using C++:
This repository contains a project for banking providing the minimal features of the banking system.
## Features
- Create an Account
- Check Balance in a particular Account
- Deposit or withdraw cash from a particular Account
- Close any particular Account
- List all the Accounts## Prerequisites
- C++
- Object-Oriented Programming
- Standard Template Library (STL)## Getting Started
To get a local copy of this project up and running, follow these steps:
1. Clone the repository to your local machine using the following command:
```bash
git clone https://github.com/sanjay-1458/Banking-System.git
```2. Navigate to the project's directory:
```bash
cd your-repo
```3. Open your VS code and run this file which is saved in your project's directory
## Folder Structure
The project has the following folder structure:
- `OpenAccount`: To open an account in the bank with a given name and balance.
- `BalanceEnquiry`: Check balance in ypur bank account.
- `Deposit`: Deposit the amount in your account.
- `Withdraw`: Withdraw money.
- `CloseAccount`: Close a particular account.
- `ShowAllAccounts`: Displaying all the accounts registered in the bank.