This project is a simple command-line based pharmacy management system in C. It allows you to add customer data, add new medicines, and generate bills for purchased medicines with GST calculation.
main.c
: The main C source file containing the implementation of the pharmacy management system.
- Clone the repository or download the files.
- Compile the
main.c
file using a C compiler. - Run the compiled executable to start the pharmacy management system.
- Add new customer data
- Add new medicine
- Buy medicine and generate a bill with GST
-
Open a terminal and navigate to the directory containing
main.c
. -
Compile the code using a C compiler, such as
gcc
:gcc -o pharmacy main.c