A console-based Library Management System built using C++ and Object-Oriented Programming (OOP) concepts.
It allows users to manage books and members, issue/return books, and track availability in a structured way.
- 📘 Add and display books with title, author, and availability
- 👤 Add and display members
- 📗 Issue and return books
- 🧾 Track which member has issued which books
- ✅ Simple and clean console output
- 📂 Well-organized using header (
.h) and implementation (.cpp) files
Library-Management/ ├── book.h ├── book.cpp ├── Member.h ├── member.cpp ├── LibrarySystem.h ├── librarySystem.cpp ├── main.cpp └── README.md
- C++ Classes and Objects
- Encapsulation
- Data Handling
- Clean Code Structure (separation of logic per file)
g++ main.cpp book.cpp member.cpp librarySystem.cpp -o LibrarySystem.exe
.\LibrarySystem.exe