The Inventory Management System (IMS) is a console-based application developed using C++.
It helps manage product inventory efficiently by allowing users to add, view, search, and organize products.
The project demonstrates strong fundamentals of Object-Oriented Programming (OOP), Data Structures & Algorithms, and File Handling.
- Language: C++
- Concepts Used: OOP, File Handling, Sorting, Binary Search
- Tools: g++, PowerShell / Terminal
- Add new products to inventory
- Display all available products
- Search products by ID using Binary Search
- Sort products by ID
- Persistent storage using file handling (
inventory.txt) - Menu-driven console interface
IMS/ βββ ims.cpp βββ inventory.txt βββ README.md
- C++ compiler (g++)
- Windows PowerShell / Terminal
Check compiler:
g++ --version
cd IMS
g++ ims.cpp -o ims
.\ims