Tuesday, March 10, 2015

Mini Project in C Medical Store Management System

This mini project in C Medical Store Management System is a console application without graphic.  In this project, you can add, modify and delete records of customers, suppliers and medicines. You can also search for customer or supplier details and medicines added into stock. Search can be done by medicine id, customer id or supplier name.

You can input many information like medicine Id, rack no., cabinet no., supplier’s name, unit cost, sale price, etc while adding a medicine into the store. You can also view information about report and billing.
The source code for this project is large, complete and totally error-free. It is compiled in Code::Blocks IDE with MinGW compiler.
Unlike other C program source codes, I haven’t displayed the source code for this mini project onMedical Store Management System in C here because it’s too long – over 2500 lines. You can directly access the source code plus application file from the download links.

About Medical Store Management System Project:

This mini project is a very comprehensive one. File handling has been extensively and effectively used for almost major functions. The whole project is based on file handling as all medical records are stored in file.
Data structure have been used to store and organize records. Overall, understanding this project will provide you valuable information on how to store, edit, search and delete data using file.
There are over 25 functions used in this mini project. I have divided those into the parent functions listed below to help you understand the project better.
1. Customer and supplier Id
int getcust_id();
int getsupp_id();
2. Welcome and main menu
void welcome();
void main_menu();
3. All boxes
void main_box();
void box1();
void wbox();
4. Bill slip
void bill();
5. About menu
void about();
6. Medicine menu
void medicine();
void medi_sale();
void stock();
void update_stock();
void medi_entry();
void medi_search();
void remainder();
7. Supplier menu
void supplier();
void supp_entry();
void supp_list();
void sup_update();
void search();
void search_id();
void search_name();
8. Customer menu
void customer();
void cust_search();
void search_cid();
void search_cname();
void cust_entry();
void cust_list();
void cust_update();
9. Report menu
void report_menu();
void report();
void sale_rpt();
void sale_rpt_daily();
void profit_rpt();
void pur_rpt();
void pur_rpt_daily();
void gotoxy (int x, int y) – I have been describing this function in every C mini project published on this site. You need to understand this function as it is one of the most important one used in Medical Store Management System Project.
Gotoxy function allows you to print text in any place of screen. Using this function in Code::Blocks requires coding, but it can be directly used in Turbo C. Here is a code for this function in Code::Blocks.

No comments:

Post a Comment