A Library Management System developed in C++ that allows users to manage books, including details like book name, author, publisher, number of copies, and price. Users can log in with given credentials, issue books, return issued books, and see available books.
- User Authentication:login for users with given credentials.
- Book Management: Add, update, and delete book entries.
- Issue Book: Users can issue a book from the library.
- Return Book: Users can return an issued book.
- View Available Books: Users can see the list of available books in the library.
- A C++ compiler (e.g., GCC, Clang)
- A terminal or command prompt
Login:
Use the given credentials to log in to the system. Main Menu:
After logging in, you will be presented with a menu of options: Issue Book Return Book View Available Books
Select the 'Issue Book' option from the menu. Enter the required book details to issue a book. Return a Book:
Select the 'Return Book' option from the menu. Enter the required book details to return an issued book. View Available Books:
Select the 'View Available Books' option from the menu. The system will display a list of all available books. Contributing