/Bank-Management

This project is menu driven C++ code for bank management to store data, retrieve, append, delete, search and modify (City, Phone no. or both) using file handling

Primary LanguageC++

Bank Management System

This project is menu driven C++ code for bank management to store data, retrieve, append, delete, search and modify (City, Phone no. or both) using file handling.

Usage

    g++ Bankmanagement.cpp -o Bankmanagement
    ./Bankmanagement

Features

  • Mainu driven C++ code using the concepts of Object Oriented Programming & File handling.
    1. Create Account :- To store data - Account number, Name, Bank type, Phone no., City and Balance
    2. Display Account :- To retrieve all the data
    3. Search Account :- To search particular record based on account number
    4. Append Account :- To store data in append mode
    5. Delete Account :- To delete a particular record based on account number after confirmation
    6. Modify Account :- To modify a particular record based on account number. You can modify City, Phone no. or both based on your choice.
  • The data gets store in bank.txt file created in current directory.