This project is a simple Online Store Management System developed using C/C++. It provides a basic framework for managing products, customers, and sales operations. The system allows store owners or admins to add, update, delete, and view product details, as well as handle customer orders in a console-based environment.
- Add new products to the store
- Update product information (price, quantity, etc.)
- Delete products from the store
- Display available products
- Handle customer purchases/orders
- Generate sales records and summaries
- Programming Language: C / C++
- Environment: Console (CLI-based)
- File Handling: Used to store and retrieve product/customer data persistently
βββ main.cpp / main.c # Entry point of the program
βββ product.h / product.cpp # Product-related functions and structure
βββ customer.h / customer.cpp # Customer-related functions and structure
βββ utils.h / utils.cpp # Helper functions (validation, display, etc.)
βββ data/ # Folder containing product and sales data files
βββ README.md # Project documentation