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.
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 on Medical 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.
Download Mini Project in C Medical Store Management System with Source Code
[sociallocker]
Download Mini Project in C Medical Store Management System with Source Code
[/sociallocker]
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.
Here, you can input many information like medicine Id, rack no., cabinet no., supplier’s name, unit cost, sales price, etc while adding a medicine into the store. You can also view information about report and billing. (Also check out customer billing system project.)
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.
COORD coord = {0, 0}; // sets coordinates to (0,0) as global variables
void gotoxy (int x, int y)
{
coord.X = x; coord.Y = y; // X and Y are the coordinates
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
}
Note: In Medical Store Management System, you have to press the first character to choose the option upon running the application. For example: – (scroll down to the screenshot of main menu in output) for viewing the supplier info, enter ‘s’. Enter ‘c’ to view the customer info, enter ‘m’ for medicine and so on.
Output Screenshots:
Also see,
Department Store Management System
Cyber Management System
More Projects in C/C++
I hope this C mini project on Medical Store Management System will serve you well as a good reference project. Understanding its source code can definitely guide you create similar mini projects of your own. But, submitting this project with little or no modification at all is completely discouraged.
Can u plz send code in c++
Designing an embedded
Medical product with
Management of info.
i need medical store mangment program in c…using arrey, string, pointer..can u send….
sir could you send the source code for the same project in opengl……
Sorry, I don’t have this project in OpenGL.
my project title is medicale store mangement system in advaced database system place information this project
Sir please send me source code of Medical Store Management.
You can get source code from the download link in the article. If the link isn’t working, let me know.
Yup,I am not getting any kind of download link in this article.Please help me out.Its very important.
Download Mini Project in C Medical Store Management System with Source Code. Download Project Source Files FREE ! Share on social media and link will appear.
can you teach me how to make the borders/box around it?
sir
please remove all the error in this project
There’s no error in this project. Please, recheck; compile it in Code::Blocks.
please show me the Bill creation method and am i able to print the bill??
No, you can’t print bill in this project. Here’s another Medical Management Project where you can print bill.
can you please send me the source code for blood bank management system?it was so important…please send to my email address
Hey, I don’t have a project titled “Blood Bank Management System”, but here’s “Bank Management System Project in C“. Hope this helps.
How to connectivity database in c project
using odbc
the program has many errors plz rectify them
Where did you compile it, and what errors did you find in the program? This project is to be compiled on Code::Blocks using GCC compiler, and it has no errors of any kind.
as for me, i open the *.c file with visual studio 2012 and tried to compile it but i got a great deal of errors: lines 2XX, and the 3XX, that’s to say lines (200…up to 360)
hope you fix them to fit all compilers
I’ve clearly mentioned in the project description that this project is to be compiled on Code::Blocks.