Skip to main content

Posts

Showing posts with the label C

Bank Management Project in C Language

hi i am helping my sister to create a simple bank management project. i like to share with you #include <stdio.h> #include <conio.h> #include <string.h> #include <stdlib.h> // Structure declaration struct acc_type { char bank_name[20]; char bank_branch[20]; char acc_holder_name[30]; int acc_number; char acc_holder_address[100]; float available_balance; }; struct acc_type account[20]; int num_acc; // Global variable void Create_new_account(); // Create_new_account function declaration [ This function will create a new customer account ] void Cash_Deposit(); // Cash_Deposit function declaration [ this function will Cash_Deposit money for specific account ] void Cash_withdrawl(); // Cash_withdrawl function declaration [ this function will withdaw money from specific account ] void Account_information(); // Account_information function declaration [ this function will show ...