0% found this document useful (0 votes)
11 views

Library Management System Using C++ With Source Code

The document describes a Library Management System developed in C++ that provides a command-line interface for managing student accounts and books. It includes functionalities for administrators to manage books and for students to manage their accounts, issue books, and deposit funds. The document also outlines the requirements for running the code and provides detailed instructions on compiling and executing the program.

Uploaded by

Faisal Farooqui
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views

Library Management System Using C++ With Source Code

The document describes a Library Management System developed in C++ that provides a command-line interface for managing student accounts and books. It includes functionalities for administrators to manage books and for students to manage their accounts, issue books, and deposit funds. The document also outlines the requirements for running the code and provides detailed instructions on compiling and executing the program.

Uploaded by

Faisal Farooqui
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 14

11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious

/ C++ Projects, projects / By Nikhil Kamble


Free Ebooks
Library Management System Using C++ With Source Code
Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

Free Projects

Python Projects

Java Projects

C++ Projects

HTML CSS JS Projects

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook


Introduction :
Interview QnA Ebook

The LibraryAllManagement
Browse Ebooks System is developed in C++ and offers a command-line interface. The system handles student accounts and book management, including adding, editing,
viewing books, and managing student transactions.

This Library Management System allows administrators to manage books and student accounts, while students can manage their balances and issue books. The system includes
functionalities for creating student accounts, depositing funds, issuing books, and viewing or editing book details.

Required Modules or Packages :


Ensure you have a C++ compiler such as GCC or Clang to compile and run this application. No external libraries or packages are required.

How to Run the Code :


To compile and run the Library Management System, follow these steps:

1. Save the Code: Copy the provided C++ code into a file named library_management_system.cpp.
2. Compile the Code: Use a C++ compiler to compile the For example, using g++:

g++ -o library_management_system library_management_system.


library_management_system.cpp

3. Run the Program: Execute the compiled program:

./library_management_system

Code Explanation :
Initialization of Books:

https://codewithcurious.com/projects/library-management-system-using-c/ 1/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious

for (int i = 0; i &lt


lt;; MAX_BOOKS
MAX_BOOKS;; i
i++
++)
) { strcpy
strcpy((book_title
book_title[[i], &quot
quot;
;Title
Title&
&quot
quot;
;); strcpy
strcpy((book_author
book_author[[i], &quot
quot;;Author
Author&&quot
quot;;);
book_isbn[
book_isbn[i] = i + 1000;
1000; book_available[
book_available[i] = true;
true;
}
MAX_BOOKS;
book_count = MAX_BOOKS ;

Initializes the library with 15 books (default titles and authors) and sets their availability to true.
Free Ebooks
Login and Menu Selection:

Python Ebook

Java Ebook
true)
while (true ) {
cout lt;;&gt
Python&Games
lt gt;; option
option;
Ebook ;
// ... additional code
Interview QnA Ebook
}
Browse All Ebooks

Presents login options for Admin, Student, or Exit. Continues in a loop until Exit is

Password Verification:
Free Projects

if (password
Python Projects == "password")
"password") {
// Admin or student options based on role
Java Projects
} else {
cout
C++ lt;
&lt
Projects;&lt
lt;; &quot
quot;;Incorrect password.
password.\n
\n&
&quot
quot;
;;
}
HTML CSS JS Projects

Verifies the entered password. If correct, proceeds to role-specific options; otherwise, displays an error message.

Free Ebooks
Admin Actions:

Python Ebook
is_admin)
if (is_admin ) {
JavaAdmin-specific
// Ebook options
}
Python Games Ebook

Interview QnA Ebook


Shows admin options (Add book, Edit book, View book status, etc.) and executes the selected action.
Browse All Ebooks

Student Actions:

else {
int roll;
roll;
lt;
cout &lt ;&gt
gt;; roll
roll;;
// ... additional student actions
}

Allows students to view balance, deposit money, or issue a book based on their roll

Create Account if Not Found:

if (index == -1) {
lt;
cout &lt ;&gt
gt;; option
option;;
create_account(
if (option == 1) { create_account ();
}
}

If the student is not found, prompts to create a new account if the user chooses

Incorrect Password Handling:

else {
cout <
lt;<
lt; "
quot;Incorrect password.
password.\n&
\n"
quot;;
}

https://codewithcurious.com/projects/library-management-system-using-c/ 2/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious

Join our Telegram for Free Coding Ebooks & Handwritten Notes!

Source Code :
Free Ebooks

main.cpp
Python Ebook

Java
# Ebook
include
#include
Python Games Ebook
#include
Interview QnA Ebook
using namespace std;
std;
Browse All Ebooks

// Constants
const int MAX_STUDENTS = 20
20;
;
constProjects
Free 15;
int MAX_BOOKS = 15 ;
50;
const int MAX_NAME_LENGTH = 50 ;

// Global variables
Python Projects
int student_count = 0;
int book_count
Java Projects = 0;
student_balance[
double student_balance [MAX_STUDENTS
MAX_STUDENTS]
];
C++
intProjects
student_roll[
student_roll [MAX_STUDENTS
MAX_STUDENTS]];
student_name[
charCSS
HTML JS Projects [MAX_STUDENTS
student_name MAX_STUDENTS]][MAX_NAME_LENGTH
MAX_NAME_LENGTH]];
book_title[
char book_title [MAX_BOOKS
MAX_BOOKS]][MAX_NAME_LENGTH
MAX_NAME_LENGTH]];
book_author[
char book_author [MAX_BOOKS
MAX_BOOKS]][MAX_NAME_LENGTH
MAX_NAME_LENGTH]];
book_isbn[
int book_isbn [MAX_BOOKS
MAX_BOOKS]
];
book_available[
Free book_available
bool Ebooks [MAX_BOOKS
MAX_BOOKS]];

// Function prototypes
Pythoncreate_account
void Ebook
create_account(();
display(
void display (int roll
roll)
);
Java Ebook
deposit_amount(
void deposit_amount (int roll,
roll, double amount
amount));
Pythonissue_item
void Games Ebook
issue_item((int roll
roll)
);
display_sorted(
void display_sorted ();
Interview QnA Ebook
find_student(
int find_student (int roll
roll));
find_book(
Browse
int (int isbn
All Ebooks
find_book isbn));
add_book(
void add_book ();
void edit_book(
edit_book();
void view_books
view_books(();

int main(
main() {
// Initialization
// Add initial 15 books to the library
// TODO: Replace with actual book data
for (int i = 0; i &lt
lt;; MAX_BOOKS
MAX_BOOKS;; i
i++
++)
) {
strcpy(
strcpy (book_title
book_title[[i], &quot
quot;;Title
Title&&quot
quot;;);
strcpy(
strcpy (book_author
book_author[[i], &quot
quot;;Author
Author&&quot
quot;;);
book_isbn[
book_isbn [i] = i + 1000
1000;
;
book_available[
book_available[i] = true
true;;
}
book_count = MAX_BOOKS;
MAX_BOOKS;

option;
int option ;
is_admin;
bool is_admin ;
string password;
password;

true)
while (true ) {
lt;
cout &lt ;&gt
gt;; option
option;;

if (option == 0) {
break;
break ;
}

is_admin = (option == 1);

lt;
cout &lt ;&gt
gt;; password
password;;

if (password == "password"
"password")) { // Use a simple password for demonstration purposes.
if (is_admin)
is_admin) {
lt;
cout &lt ;&gt
gt;; option
option;;

option)
switch (option ) {

https://codewithcurious.com/projects/library-management-system-using-c/ 3/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious
case 1: {
add_book(
add_book (); 
break;
break;
}
case 2: {
edit_book(
edit_book ();
break;
break;
Free Ebooks }
case 3: {
view_books(
view_books ();
Python Ebook break;
break;
}
Java Ebook
case 4: {
Python Games Ebook display_sorted(
display_sorted ();
break;
break ;
Interview QnA Ebook
}
Browse All Ebooks case 5: {
int roll;
roll;
lt;
cout &lt ;&gt
gt;; roll;
roll;
display(
display (roll
roll));
Free Projects break;
break ;
}
}
Python Projects } else {
roll;
int roll ;
Java Projects lt;
cout &lt ;&gt
gt;; roll
roll;;
C++ Projects
find_student(
int index = find_student (roll
roll)
);
HTML CSS JS Projects if (index == -1) {
lt;
cout &lt ;&gt
gt;; option
option;;
if (option == 1) {
create_account(
create_account();
Free Ebooks
}
} else {
lt;
cout &lt ;&gt
gt;; option
option;;
Python Ebook

Java Ebook option)


switch (option ) {
case 1: {
Python Games Ebook
display(
display (roll
roll));
Interview QnA Ebook break;
break ;
}
Browse All Ebooks
case 2: {
double amount;
amount;
lt;
cout &lt ;&gt
gt;; amount
amount;;
deposit_amount(
deposit_amount (roll
roll,, amount
amount));
break;
break ;
}
case 3: {
issue_item(
issue_item (roll
roll));
break;
break ;
}
}
}
}
} else {
cout &lt
lt;;= MAX_STUDENTS
MAX_STUDENTS)) {
cout &lt
lt;
;&lt
lt;; &quot
quot;;Student limit reached.
reached. Cannot create more accounts.
accounts.\n
\n&
&quot
quot;
;;
return;
return ;
}

roll;
int roll ;
lt;
cout &lt ;&gt
gt;; roll
roll;;

if (find_student
find_student((roll
roll)) != -1) {
cout <
lt;<
lt; "
quot;Account already exists for this roll number.
number.\n&
\n"
quot;;
return;
return ;
}

student_roll[
student_roll [student_count
student_count]] = roll
roll;;
lt;
cout &lt ;&lt
lt;
; &quot
quot;;Enter student name:
name: &quot
quot;;;
cin.
cin .ignore
ignore(();
cin.
cin .getline
getline((student_name
student_name[[student_count
student_count]], MAX_NAME_LENGTH
MAX_NAME_LENGTH));

initial_deposit;
double initial_deposit ;
lt;
cout &lt ;&gt
gt;; initial_deposit
initial_deposit;;

if (initial_deposit &ltlt;
; 50
50)
) {
lt;
cout &lt ;&lt
lt;; &quot
quot;;Initial deposit must be at least $50.
$50.\n
\n&
&quot
quot;
;;

https://codewithcurious.com/projects/library-management-system-using-c/ 4/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious
return;
return ;
} 
student_balance[
student_balance [student_count
student_count]] = initial_deposit - 20 - 30
30;; // Account opening and security deposit
student_count++
student_count++;;
}

Free display
void Ebooks
display((int roll
roll)) {
int index = find_student(
find_student(roll)
roll);
if (index == -1) {
Python Ebook
cout lt;
&lt ;&lt
lt;; &quot
quot;;Student not found
found..\n
\n&&quot
quot;;;
return;
return ;
Java Ebook
}
Python Games Ebook
cout &ltlt;
;&lt
lt;; &quot
quot;;Roll No:
No: &quot
quot;; &lt
lt;
;&lt
lt;
; student_roll
student_roll[[index
index]] &lt
lt;
;&lt
lt;
; endl
endl;;
Interview QnA Ebook
cout &ltlt;
;&lt
lt;; &quot
quot;;Name
Name:: &quot
quot;; &lt
lt;;&lt
lt;; student_name
student_name[[index
index]] &lt
lt;;&lt
lt;; endl
endl;;
Browse&lt
cout All;Ebooks
lt; lt;
&lt ; &quot
quot;;Balance
Balance:: $
$&&quot
quot;; &lt
lt;;&lt
lt;; fixed &lt
lt;;&lt
lt;; setprecision
setprecision((2) &lt
lt;;&lt
lt;; student_balance
student_balance[[index
index]] &lt
lt;;&lt
lt;; endl
endl;;
}

deposit_amount(
void deposit_amount (int roll
roll,, double amount
amount)) {
Free Projects
int index find_student(
= find_student (roll
roll));
if (index == -1) {
cout &ltlt;;&lt
lt;; &quot
quot;;Student not found
found..\n
\n&&quot
quot;;;
return;
Projects;
Pythonreturn
}
Java Projects
student_balance[
student_balance
C++ Projects [index
index]] += amount
amount;;
cout &ltlt;;&lt
lt;; &quot
quot;;New balance:
balance: $ $&
&quot
quot;
; &lt
lt;;&lt
lt;; fixed &lt
lt;;&lt
lt;; setprecision
setprecision((2) &lt
lt;;&lt
lt;; student_balance
student_balance[[index
index]] &lt
lt;;&lt
lt;; endl
endl;;
HTML
} CSS JS Projects

issue_item(
void issue_item (int roll
roll)) {
int index = find_student(
find_student(roll)
roll);
Free Ebooks
if (index == -1) {
lt;
cout &lt ;&lt
lt;; &quot
quot;;Student not found
found..\n
\n&&quot
quot;;;
return;
return ;
Python Ebook
}
Java Ebook
cout <
lt;<
lt; "
quot;Available books:
books:\n&
\n"
quot;;
Python Games Ebook
for (int i = 0; i &ltlt;
; book_count
book_count;; i
i++
++)
) {
Interview book_available[
if (QnA Ebook
book_available [i]) {
cout &ltlt;
;&lt
lt;; i + 1 &lt
lt;
;&lt
lt;; &quot
quot;;. &quot
quot;; &lt
lt;;&lt
lt;; book_title
book_title[[i] &lt
lt;;&lt
lt;; &quot
quot;; by &quot
quot;; &lt
lt;;&lt
lt;; book_author
book_author[[i] &lt
lt;;&lt
lt;;
Browse All Ebooks
quot;
&quot ; (ISBN
ISBN:: &quot
quot;
; &lt
lt;
;&lt
lt;; book_isbn
book_isbn[[i] &lt
lt;
;&lt
lt;; "
quot;)\n\n&
&quot
quot;
;;
}
}

choice;
int choice ;
lt;
cout &lt ;&gt
gt;; choice
choice;;

if (choice == 0) {
return;
return ;
}

if (book_available
book_available[[choice - 1] &amp
amp;
;&amp
amp;; student_balance
student_balance[[index
index]] &gt
gt;;= 2) {
book_available[
book_available [choice - 1] = false
false;
;
student_balance[
student_balance [index
index]] -= 2;
cout <
lt;<
lt; "
quot;Book issued successfully.
successfully. New balance:
balance: $
$&&quot
quot;; &lt
lt;;&lt
lt;; fixed &lt
lt;;&lt
lt;; setprecision
setprecision((2) &lt
lt;;&lt
lt;;
student_balance[
student_balance [index
index]] &lt
lt;;&lt
lt;; endl
endl;;
} else {
cout <
lt;<
lt; "
quot;Cannot issue the book.
book. Insufficient balance or book is unavailable.
unavailable.\n&
\n"
quot;;
}
}

void display_sorted(
display_sorted() {
for (int i = 0; i &lt
lt;; student_count
student_count;; i++
i++)) {
for (int j = i + 1; j student_roll[
student_roll[j]) {
swap(
swap (student_roll
student_roll[[i], student_roll
student_roll[[j]);
swap(
swap (student_balance
student_balance[[i], student_balance
student_balance[[j]);
swap(
swap (student_name
student_name[[i], student_name
student_name[[j]);
}
}
}

for (int i = 0; i &lt lt;


; student_count
student_count; ; i
i++
++)
) {
cout <
lt;&lt
lt;; student_roll
student_roll[[i]&lt
lt;
;&lt
lt;; &quot
quot;; - &quot
quot;; &lt
lt;;&lt
lt;; student_name
student_name[
[i] &lt
lt;;&lt
lt;; &quot
quot;; - Balance
Balance:: $
$&&quot
quot;; &lt
lt;;&lt
lt;; fixed
lt;
&lt ;&lt
lt;; setprecision
setprecision((2) &lt
lt;;&lt
lt;; student_balance
student_balance[ [i] &lt
lt;;&lt
lt;; endl
endl;;
}
}

https://codewithcurious.com/projects/library-management-system-using-c/ 5/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious
int find_student(
find_student(int roll
roll)) {
for (int i = 0; i &lt
lt;; student_count
student_count;; i
i++
++)
) { 
if (student_roll[
student_roll[i] == roll)
roll) {
i;
return i ;
}
}
return -1;
Free Ebooks
}

find_book(
int find_book (int isbn)
isbn) {
Python
for Ebook
(int i = 0; i = MAX_BOOKS)
MAX_BOOKS) {
lt;
cout &lt ;&lt
lt;
; &quot
quot;;Book limit reached.
reached. Cannot add more books.
books.\n
\n&
&quot
quot;
;;
Java Ebook
return;
return ;
Python Games Ebook
}
cout &ltlt;
;&lt
lt;; &quot
quot;;Enter book title:
title: &quot
quot;;;
Interview QnA Ebook
cin.
cin .ignore
ignore(();
Browse
cin.
cin All Ebooks
.getline
getline( (book_title
book_title[[book_count
book_count]], MAX_NAME_LENGTH
MAX_NAME_LENGTH));

lt;
cout &lt ;&lt
lt;; &quot
quot;;Enter book author:
author: &quot
quot;
;;
cin.
cin .getline
getline((book_author
book_author[[book_count
book_count]], MAX_NAME_LENGTH
MAX_NAME_LENGTH));
Free Projects
isbn;
int isbn ;
lt;
cout &lt ;&gt
gt;; isbn
isbn;;
Python Projects
find_book(
if (find_book (isbn
isbn)) != -1) {
Java Projects
cout &ltlt;
;&lt
lt;
; &quot
quot;
;A book with this ISBN already exists.
exists.\n
\n&
&quot
quot;
;;
return;
return
C++ Projects ;
}
HTML CSS JS Projects
book_isbn[
book_isbn [book_count
book_count]] = isbn
isbn;;
book_available[
book_available [book_count
book_count]] = true
true;
;
book_count++
book_count++;;
Free Ebooks
}

edit_book(
void edit_book () {
Python Ebook
int isbn;
isbn;
lt;
Java Ebook
cout &lt ;&gt
gt;; isbn
isbn;;
find_book(
int index = find_book (isbn
isbn)
);
Python Games Ebook
if (index == -1) {
coutQnA
Interview lt;
&lt ;&lt
lt;
Ebook ; &quot
quot;;Book not found
found..\n
\n&&quot
quot;;;
return;
return ;
Browse All Ebooks
}

cout &lt
lt;
;&lt
lt;
; &quot
quot;;Current book title:
title: &quot
quot;; &lt
lt;;&lt
lt;; book_title
book_title[[index
index]] &lt
lt;;&lt
lt;; endl
endl;;
cout <
lt;&lt
lt;
; "
quot;Enter new book title:
title: &quot
quot;;;
cin.
cin .ignore
ignore(();
cin.
cin .getline
getline((book_title
book_title[[index
index]], MAX_NAME_LENGTH
MAX_NAME_LENGTH));

cout &lt
lt;
;&lt
lt;; &quot
quot;;Current book author:
author: &quot
quot;; &lt
lt;
;&lt
lt;; book_author
book_author[[index
index]] &lt
lt;;&lt
lt;; endl
endl;;
cout <
lt;&lt
lt;; &quot
quot;;Enter new book author:
author: &quot
quot;;;
cin.
cin .getline
getline((book_author
book_author[[index
index]], MAX_NAME_LENGTH
MAX_NAME_LENGTH));

lt;
cout &lt ;&lt
lt;; &quot
quot;;Book details updated.
updated.\n
\n&
&quot
quot;
;;
}

view_books(
void view_books () {
for (int i = 0; i <lt; book_count
book_count; ; i
i++
++)
) {
lt;
cout &lt ;&lt
lt;; &quot
quot;;Title
Title:: &quot
quot;; &lt
lt;;&lt
lt;
; book_title[
book_title[i] &lt
lt;;&lt
lt;; endl
endl;;
cout <
lt;<
lt; "
quot;Author:
Author: "
quot; <
lt;<
lt; book_author[
book_author[i] <
lt;<
lt; endl;
endl;
cout &lt
lt;;&lt
lt;; &quot
quot;;ISBN
ISBN:: &quot
quot;; &lt
lt;;&lt
lt;; book_isbn
book_isbn[[i] &lt
lt;;&lt
lt;; endl
endl;;
cout <
lt;&lt
lt;; "
quot;Available
Available:: &quot
quot;
; &lt
lt;;&lt
lt;; (book_available
book_available[[i] ? &quot
quot;
;Yes
Yes&
&quot
quot;
; : &quot
quot;;No
No&&quot
quot;;) &lt
lt;;&lt
lt;; endl &lt
lt;;&lt
lt;; endl
endl;;
}
}

Output :
This screenshot shows the login and main menu options of the Library Management

https://codewithcurious.com/projects/library-management-system-using-c/ 6/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

Find More Projects


Free Projects

Python Projects

Java Projects

C++ Projects

HTML CSS JS Projects

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks Architectural Website using HTML CSS and JavaScript
 Nikhil Kamble •  October 17, 2024 •  projects, Web Development Projects

Architectural Website using HTML CSS and JavaScript Introduction : This is a Architectural Website using HTML CSS and
JavaScript. This website contains …

https://codewithcurious.com/projects/library-management-system-using-c/ 7/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

Free Projects
Interior Design Website using HTML CSS and JavaScript
 Nikhil Kamble •  October 15, 2024 •  projects, Web Development Projects

Python Projects Interior Design Website using HTML CSS and JavaScript Introduction : This project is an interior design website, created for
showing the services, …
Java Projects

C++ Projects

HTML CSS JS Projects

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

Candy Crush Game Using HTML CSS JavaScript


 Goutam Prajapat •  October 10, 2024 •  projects, Web Development Projects

Candy Crush Game Using HTML CSS & JavaScript Introduction Hello friends, welcome to my new blog post. Today I have
created a …

https://codewithcurious.com/projects/library-management-system-using-c/ 8/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

Free Projects

Python Projects

Java Projects
Archery Game Using HTML CSS and JavaScript
C++ Projects
 Goutam Prajapat •  October 8, 2024 •  projects, Web Development Projects
HTML CSS JS Projects
Archery Game Using HTML CSS and JavaScript Introduction Hello friends, you all are welcome to our new blog post. Today
we have …

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

Complain Management using Python With a Graphical User Interface (GUI)


 Shruti Lodha •  September 28, 2024 •  projects, Python Projects

Complain Management using Python with a Graphical User Interface (GUI) Introduction: The Complain Management using
Python program designed to manage complaints effectively …

https://codewithcurious.com/projects/library-management-system-using-c/ 9/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

Free Projects

Python Projects

Java Projects

C++ Projects

HTML CSS JS Projects

More Java Projects


COVID 19 Hospital Management Using Python | Covid 19 Hospital
Free Ebooks
management using Django Graphical User Interface covid 19 hospital
management django
Basic Logging System in C++ With Source Code
Python Ebook  Shruti Lodha •  September 27, 2024 •  projects, Python Projects
Snake Game Using C++ With Source Code
Java Ebook COVID 19 Hospital Management Using Python [Django Framework] Introduction: The COVID-19 Hospital Management is a
Python-based
C++ Hotel application
Managementthat tracks web applications
System With Source for Hospitals.
Code …
Python Games Ebook

Interview QnA Ebook


Student Management System Using C++ With Source Code

Browse All Ebooks Banking Management System Using C++ With Source Code

Car rental management system Using C++ With Source Code

Library Management System Using C++ With Source Code

Dairy Management System Using C++ With Source Code

Employee Management System using c++ With Source Code

Student Management System using C++ With Source Code

ATM BANKING SYSTEM USING C Language With Source Code

Airlines Reservation system using C with Source Code


« Previous 1 2 3 4 5 Next »

Get Huge Discounts

https://codewithcurious.com/projects/library-management-system-using-c/ 10/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

Free Projects

Python Projects

Java Projects

C++ Projects

HTML CSS JS Projects

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

https://codewithcurious.com/projects/library-management-system-using-c/ 11/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

Free Projects

Python Projects

Java Projects
← Previous Post Next Post →
C++ Projects

HTML CSS JS Projects

Search... 
Free Ebooks

BuyEbook
Python Handwritten Notes

Java Ebook
Get Discount on Top EdTech Compnies
Python Games Ebook

Interview QnA Ebook


45% Discount on SkillShare
Browse All Ebooks

10% Discount on KodeKoloud

30% Discount on AlmaBetter

10% Discount on Coding Ninjas

Upto 80% Discount on GeeksforGeeks

Complete Complete Complete Complete C++ Operating Complete CSS

Angular.js Node.js React.js Handwritten System Handwritten


Handwritten Handwritten Handwritten Notes – Handwritten Notes –

Notes – Notes – Notes – Codewithcuriou Notes – CodeWithCuriou


Codewithcuriou Codewithcuriou s CodeWithCuriou s

s s s

Python Handwritten Notes

https://codewithcurious.com/projects/library-management-system-using-c/ 12/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious
Java Handwritten Notes

DSA Handwritten Notes

React Js Handwritten Notes

Browser All Handwritten Notes

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

Free Projects

Python Projects

Java Projects

C++ Projects

HTML CSS JS Projects

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

CodeWithCurious is a Best Place to Learn & grow your Career in IT sector. Best Content on the latest technology in including C, C++, Java, Python, Sql, Web development & Interview
Preparation Material free of cost.

Info

 Home

 Projects

 E books

 Blogs

 About Us

Support

 Contact us

 Privacy Policy
 Terms & Conditions
 Affiliate Discloser

https://codewithcurious.com/projects/library-management-system-using-c/ 13/14
11/21/24, 7:42 PM Library Management System Using C++ With Source Code - CodeWithCurious

Follow us for more! 


© 2023 All Rights Reserved CodeWithCurious

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

Free Projects

Python Projects

Java Projects

C++ Projects

HTML CSS JS Projects

Free Ebooks

Python Ebook

Java Ebook

Python Games Ebook

Interview QnA Ebook

Browse All Ebooks

https://codewithcurious.com/projects/library-management-system-using-c/ 14/14

You might also like