Console-based C++ project for managing products, stock, and sales.
- Add products
- List products
- Update stock
- Record sales
- View total revenue and units sold
- See low-stock alerts
- File-based persistence with
.txtfiles
- C++
- OOP
- File handling
- STL
g++ src/*.cpp -Iinclude -o inventory_app
./inventory_appg++ src/*.cpp -Iinclude -o inventory_app.exe
inventory_app.exesrc/→ source filesinclude/→ header filesdata/→ product and sales records
This project is good for GitHub because it shows:
- object-oriented programming
- real business logic
- inventory and sales workflow
- file persistence