Banking System Project
Description: This C programs on BANKING SYSTEM has account classwith data members like account number,name,deposit, withdraw amount and type of account. Customer data is stored in a binary file. A customer can deposite and withdraw amount in his account. User can create, modify and delete account.
In this banking system project, We have not used graphics to keep program simple. Click on download project button to download zip folder which contains C source code file, sample data file(.dat file), output screen (.doc file).
Library Management System Project
Description: This C menu driven programs on LIBRARY MANAGEMENT SYSTEM has book and student class with data members like book no, bookname, authorname. Books records is stored in a binary file. A student can issue book and deposit it within 15 days. Student is allowed to issue only one book. Student Records are stored in binary file. Administrator can add, modify or delete record.
In this project, We have not used graphics to keep program simple. Click on download project button to download zip folder which contains C source code file, sample data file(.dat file), output screen (.doc file).
Student Report Card Project
Description: This C mini project on STUDENT REPORT CARD has student class with data members like roll no, name, marks and grade. Member functions in this class are used for accept / display details of students and a function to calculate grade based on marks obtained by student. Student Records are stored in binary file.
This menu driven program illustrates read, write, search, modify and delete operations in binary file. Click on download project link to download zip folder which contains C source code and data file.
Supermarket Billing Project
Description:This C menu driven programs on SUPERMARKET BILLING SYSTEM has product class with data members like product no, product name, price, qty, tax, discount. Product details is stored in a binary file. A customer
can purchase product and his invoice generated. Administrator can create, modify, view and delete product record.
In this project, We have not used graphics to keep program simple. Click on download project button to download zip folder which contains Csource code file, sample data file(.dat file), project file(.doc file).
School Project Personal Dairy Management in C programming
http://www.codeincodeblock.com/2012/06/school-project- personal-dairy.html
project Department store
http://www.codeincodeblock.com/2011/06/mini-project- department-store-source.html
Contacts Manager
http://www.codeincodeblock.com/2011/09/contacts-manager- mini-project-in-c-with.html
More: Hints
Banking Record System
Bookshop Management System
Bus Reservation System
Hotel Management System
Payroll Management System
Phonebook Management System
Railway Reservation System
Sales Management System
Student Database Management System
Student Report Card System
Supermarket Billing System
Telephone Directory System
Add Record:
For this feature void read_data() function has been used to add banking record into the file. It asks for information such as account number, first name, last name and balance to be entered.
Show/List Data:
With the information provided in add record, the void show_data() function in this banking record system project in C++ show the record corresponding to a particular account number, first name and last name. Current balance of the account holder is displayed.
Search Record:
When the function for this feature is first executed, it shows the total records in the file, and the user can then search by record number. If the record searched for is not found, the banking record system project in C++ displays the message – “Error in opening! File Not Found!!”
Edit Record:
This works in similar manner to the Search feature. When the function for Edit Record is first executed, it shows the total records in the file, and the user can edit the information by providing record number. Then, the C++ project shows all the data in that record, and the user can enter any data to modify. If the record to be edited for is not found, it displays the message – “Error in opening! File Not Found!!”
Delete Record:
First of all, when the function of this feature is executed, it shows all the records in the file, and the user can enter the record number to delete. If the record was not found, this banking record system project in C++ displays the message – “Error in opening! File Not Found!!”