C-Bank Pro is a simple console-based banking application implemented in C. It allows users to create accounts, perform various banking operations, and check their balances.
Before you begin, ensure you have met the following requirements:
- C Compiler: You need a C compiler to compile and run the C source code. For example, you can use
MinGW
on Windows.
-
Clone the Repository: Clone this GitHub repository to your local system:
git clone https://github.com/prabhavpokharel/C-Bank-Pro.git
-
Compile the Code: Navigate to the project directory and compile the C source code.
- On Windows (using MinGW):
gcc main.c -o c-bank-pro
This will create an executable file named
c-bank-pro
. -
Run the Program: Start C-BANK PRO by executing the compiled program.
-
On Windows:
c-bank-pro.exe
The program will launch, and you'll see the C-BANK PRO interface.
-
- Create an account: You can create a new user account by selecting "Create an Account" and following the prompts to enter your information.
- Log in: If you already have an account, select "Login," enter your phone number, and provide your password to log in.
- Perform banking operations: Once logged in, you can deposit cash, withdraw cash, check your balance, view transaction history, transfer money to other users, and access customer support.
- Exit: When you are done using the application, select "Exit" to log out and exit the application.
This application is a simple example and is not suitable for real-world banking applications. It does not provide security measures or data validation, and it's designed for educational purposes only.