The Clothing Store Management System is a C++ console-based application designed to help manage product inventory, facilitate customer purchases, and provide administrative functionalities such as adding, modifying, and deleting products. This system utilizes file handling to store and retrieve product information efficiently.
- View product catalog
- Place an order by selecting products and quantities
- View order summary and total price
- Add new products with details such as product number, name, price, and discount
- Modify existing product details
- Delete products from the inventory
- View all products in the inventory
- Search for specific products
- Clone the repository or download the source files.
- Compile the
main.cppfile using a C++ compiler:g++ main.cpp -o clothing_store
- Run the compiled program:
./clothing_store
- Upon running the program, select either Customer or Administrator mode.
- In customer mode, browse products and place orders.
- In admin mode, manage the product catalog using various available options.
The system uses a binary file (Shop.dat) to store product details persistently. Temporary files are used when modifying or deleting records.
- Implement a graphical user interface (GUI)
- Add user authentication for administrators
- Enable database integration for better data management
This project is open-source and available under the MIT License.
Akash Sureshbhai Khanpara