📚 Library Management System in C++ A simple command-line Library Management System built using C++ and Object-Oriented Programming principles. This project allows users to manage books and members, perform checkouts and returns, and search for books by title, ID, or author.
🚀 Features ✅ Core Functionalities Add new books and members
Search for books by title or ID
Search for books by author (supports multiple books per author)
Checkout books to members
Return books to the library
Display all books and members
🧱 Object-Oriented Design Book: Represents a book with ID, title, author, and availability status
Member: Represents a library member with ID, name, and borrowed book list
Library: Manages collections of books and members, and handles core logic