This is my C++ project, a console-based application designed to manage a product list using dynamic arrays.
- Add New Products: Dynamically add items to the inventory.
- Delete by Name: Remove products from the list using their specific names.
- View Inventory: Display a formatted list of all stored products.
- Modular Structure: Utilizes multi-file organization (.h and .cpp) for clean source code management.
- Structs & Operator Overloading: Custom data handling for Product objects.
- Dynamic Memory Management: Efficient use of
newanddeletekeywords. - Project Modularization: Organizing code into headers and implementation files to improve maintainability.
- Language: C++
- Tools: Dev-C++ (or any C++ compiler)
- Open the project file (
.dev) in your IDE. - Compile and Run the
main.cpp. - Follow the on-screen menu instructions to manage your products.