This is a simple banking system implemented in C programming language.
- Create accounts
- Deposit money
- Withdraw money
- Check account balance
To compile the program, use any C compiler such as GCC.
gcc banking_system.c -o banking_systemAfter compiling, run the executable.
./banking_systemFollow the on-screen menu to perform various banking operations.
##Sample Output Here's a sample output of the program:
Banking System Menu:
1. Create Account
2. Deposit
3. Withdraw
4. Check Balance
5. Exit
Enter your choice: - Maximum number of accounts supported: 100
- Maximum length of account holder name: 50 characters
This project is licensed under the MIT License. See the LICENSE file for details.
We welcome contributions to this project. If you have any improvements or suggestions, please fork the repository and submit a pull request.