An open API service indexing awesome lists of open source software.

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

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.