Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 996 Bytes

File metadata and controls

55 lines (35 loc) · 996 Bytes

Bank Management System (C)

A simple console-based Bank Management System written in C. This project provides basic banking operations like creating accounts, depositing, withdrawing, displaying account details, and closing accounts.

Features ✅

  • Create new accounts
  • Deposit and withdraw money
  • View account details
  • Close (delete) accounts
  • Menu-driven CLI interface

Prerequisites 🔧

  • GCC (MinGW on Windows) or any C compiler
  • Terminal / Command Prompt

Build instructions 🛠️

Using GCC:

gcc banksystem.c -o banksystem

On Windows with MinGW:

gcc banksystem.c -o banksystem.exe

Run instructions ▶️

On Unix / macOS / WSL:

./banksystem

On Windows (Command Prompt / PowerShell):

banksystem.exe

Follow the on-screen menu to perform banking operations.

Project structure 📁

  • banksystem.c - Main source file
  • README.md - Project documentation

Author: 7aniishq