A simple command line bank system written in C.
The program allows the user to check their balance, deposit money and withdraw funds while handling basic validation.
- Check account balance
- Deposit money
- Withdraw money
- Input validation (negative values, insufficient funds)
- Simple menu-based interface
- The user selects an option from the menu
- Available options:
- Check balance
- Deposit money
- Withdraw money
- Exit
- The balance is updated based on user actions
- The program runs in a loop until the user exits
- C programming language
- Standard C libraries
- Using functions to organize code
- Passing values between functions
- Implementing menu systems with
switch - Input validation
- Managing program state (balance)
WELCOME TO THE BANK!
Select an option:
- Check balance
- Deposit money
- Withdraw money
- Exit
Enter your choice: 2
Enter amount to deposit: $100
Successfully deposited $100.00
Your current balance is: $100.00
Software engineering student at ITS