Project: Library Management System
– To download Library Management System project for free (scroll down)
About Project
Library Management System is based on a concept of recording owned books, issued books, returned books, students who have borrowed and many more. Before stepping into the main system a user has to pass through a login system to get access, there are two types of login i.e Student and Librarian Login. To get access to the Librarian’s account, a password should be provided for the Librarian only. There are many features in this project. The user can also change the password from the system for their own security.
Talking about the features of the Library Management System, after logging in as a student he/she can only view booklists. All the system is controlled by the librarian as he/she can view, search, modify, add, delete books, and Issue books. The other main feature contains re-issue books and returns book. The user can also search students who issued books from the library. While adding books, he/she has to provide the details which includes the book, author and publication’s name, book Id, price, and quantity. Similarly, if a user wants to issue books for a few days, he can easily issue just by providing book’s name, id, student’s name with Id, the issued date and if the user wants to re-issue book then he/she has to provide student’s id, book id, and new date. The user can add books easily as it is separated by different categories.
While returning the book, if a user returns late then the system automatically charges fine depending upon issued dates. Another feature is that the user can change the password easily from the system. The librarian login works as the admin panel in this system. Library Management system is developed using C++ Programming Language and different variables, strings have been used for the development of it. Library Management System in C++ Programming is free to download with source code. This project provides the best system for managing library records.
In order to run the project, you must have installed Dev C++ or Code Blocks on your PC. (we recommend these IDE). For the project demo, have a look at the video below.
Features:
- Login System
- Login options
- Books branch
- Add, modify, view and delete books
- Issue book
- Re-issue book
- Return book
- Change password
- Fine charging system
hi,i just downloaded the library management system and noticed that anytime i input the password it tells me “wrong password” ive used the password provided while downloading it..what migh be the issue and is there a way to fix it?
how to copy source code in c programming please tell me
how to copy coding in c programming
ctrl + c
hi, when i am entering my choice no.2 as an libararyn so it is showing segmentaion fault (core dump). what should i do? please help me out
stbno[0]=’/0′; means in library code
#include #include #include #include using namespace std; class Patron; // forward declaration; class Book { public: Book() { patron = 0; } bool operator== (const Book& bk) const { return strcmp(title,bk.title) == 0; } private: char *title; Patron *patron; ostream& printBook(ostream&) const; friend ostream& operator<< (ostream& out, const Book& bk) { return bk.printBook(out); } friend class CheckedOutBook; friend Patron; friend void includeBook(); friend void checkOutBook(); friend void returnBook(); }; class Author { public: Author() { } bool operator== (const Author& ar) const { return strcmp(name,ar.name) == 0; } private: char *name; list books; ostream& printAuthor(ostream&) const; friend ostream& operator<< (ostream&… Read more »
Please kindly mail me this library project code .
A very in-depth project indeed. Helped me a lot. Thank you.
where can I find password.txt file in my computer ? I couldn
‘t find it but still source code is accessing it …I dnt know from where ..
how to run?
how can i run this in visual studio?
i kept getting e0350
Where is the password for librarian?