You are on page 1of 33

LIBRARY MANAGEMENT SYSTEM

Submitted in the partial fulfillment of the Degree of Bachelor of Technology


(Integrated)
In
Computer Science and Engineering

SUBMITTED BY:- GUIDED BY:


Name Akrati Srivastava Miss Sukhdilpreet
Regd. No 10803701
Rollno R246A08

SUBMITTED TO
Department of Computer Science and Engineering Lovely Professional University
Phagwara
ACKNOWLEDGEMENT

I take this opportunity to present my votes of thanks to all those guidepost who really
acted as lightening pillars to enlighten our way throughout this project that has led to
successful and satisfactory completion of this study.
We are really grateful to our HOD Mr. Rohit Dhand for providing us with an
opportunity to undertake this project in this university and providing us with all the
facilities. We are highly thankful to Miss Sukhdilpreet Kaur for her active support,
valuable time and advice, whole-hearted guidance, sincere cooperation and pains-
taking involvement during the study and in completing the assignment of preparing
the said project within the time stipulated.
Lastly, We are thankful to all those, particularly the various friends , who have been
instrumental in creating proper, healthy and conductive environment and including
new and fresh innovative ideas for us during the project, their help, it would have
been extremely difficult for us to prepare the project in a time bound framework.

Name Akrati Srivastava


Registration no. 10803701
Rollno.R246A08
TABLE OF CONTENTS

1. Introduction
2. Proposed system
i. Description
ii. System requirements
3. Requirement Analysis
4. System Design
5. Source code
6. Testing
7. Future scope of project
INTRODUCTION

In the existing system, most of the records are maintained on paper. It becomes very
inconvenient to modify the data. In the existing system, here is a possibility that the same
data in different registers may have different values which means the entries of the same
data do not match. This inconsistent state does not supply the concrete information which
poses a problem in the case information related to particular search record.
Our project is very useful. User is no longer required to check his register in search of
records, as now it can be searched over the software by choosing some options. The user
need not to type in most of the information. He/she is just required to enter the desired
options. On the whole it liberates the user from keeping lengthy manual records. In a
nutshell, it abates the work load of an organization.
In today’s world, no one likes to perform calculations on calculator or manually when
computer is there. Every one wants his/her work to be done by computer automatically
and displaying the result for further manipulations.
PROPOSED SYSTEM

The following documentation is a project the “Name of the term paper allotted”. It is a
detailed summary of all the drawbacks of the old system and how the new proposed
system overcomes these shortcomings. The new system takes into account the various
factors while designing a new system. It keeps into the account the Economical
bandwidth available for the new system. The foremost thing that is taken care of is the
Need and Requirements of the User.

DESCRIPTION
Before developing software we keep following things in mind that we can develop
powerful and quality software
PROBLEM STATEMENT
o Problem statement was to design a module:
o Which is user friendly
o Which will restrict the user from accessing other user’s data.
o Which will help user in viewing his data and privileges.
o Which will help the administrator to handle all the changes.
FUNCTIONS TO BE PROVIDED:
The system will be user friendly and completely menu driven so that the users shall have
no problem in using all options.
o The system will be efficient and fast in response.
o The system will be customized according to needs.
**Write according to you project
o (View
o Add
o Delete
o Modify)

SYSTEM REQUIRMENTS
Operating system: MS Windows XP or Windows Vista
Language: C Language
Processor: Pentium IV Processor
RAM: 512 MB
Hard disk: 5 GB
REQUIREMENT ANALYSIS

This process is adopted when management of the system development, Personnel decide
that the particular system needs improvement. The system development life cycle is the
set of activities, carried out by the analyst, designers and users to develop and implement
a system. The systems that are present in the nature follow common life cycle pattern.
For example consider the raining system. Initially the rain falls into the river, river flows
into sea, the sea water evaporates to form vapors, the vapors form clouds which again
bring rain. Similarly consider a man made system initially a system is analyzed, designed
and made operational by the efforts of system analysis. After successful operation or a
number of users, the system becomes less and less effective by change in the
environment. So these changes have to be incorporated in to the system by minor
modifications. So the general activities from the life cycle of the system are given below:
• Select ion and identification of the system to be studied
• Preliminary study
• Defining the system
• Design and development of the system
• Implementation of the system
SYSTEM DESIGN

Then we began with the design phase of the system. System design is a solution, a “HOW
TO” approach to the creation of a new system. It translates system requirements into
ways by which they can be made operational. It is a translational from a user oriented
document to a document oriented programmers. For that, it provides the understanding
and procedural details necessary for the implementation. Here we use Flowchart to
supplement the working of the new system. The system thus made should be reliable,
durable and above all should have least possible maintenance costs. It should overcome
all the drawbacks of the Old existing system and most important of all meet the user
requirements.

START

Welcome to library management

Enter
your
choice
?

members book reports help

Do you want to
continue?

STOP
SOURCE CODE

# include<stdio.h>
# include<conio.h>
# include<dos.h>
# include<string.h>
# include<math.h>

# define TRUE 1
# define FALSE 0

struct member
{
int mid;
char mname[20],madd[30];
struct msince
{
int day,mon,year;
} ms;
struct mexpir
{
int day,mon,year;
} me;

} M;

struct book
{
struct bkid
{
int gno,bno,no;
} b;
char bname[20],author[15],pub[20];
int price;
} B;

struct transaction
{
int mid,tid;
struct bookid
{
int gno,bno,no;
} b;
struct issued
{
int day,mon,year;
} i;

struct returned
{
int day,mon,year;
} r;

float fine;
char reason;
} T;

struct date d;

FILE *fm,*fb,*ft;

char *mainmenu[]={
"Member",
"Book",
"Reports",
"Help",
"Exit"
};

char *memmenu[]={
"Add New Member",
"Renew Existing Member",
"Issue Duplicate I-Card",
"Back"
};

char *bookmenu[]={
"Add New Books",
"Issue Book",
"Return Book",
"Back"
};

char *rptmenu[]={
"Members Details",
"Books Details",
"Transactions Details",
"Back"
};
void mainscr();
void showmenu(char **menu,int count,int sr,int sc);
int getchoice(char **menu,char *hotkeys,int r,int c,int count);

void addmember();
void renewmem();
void memdupid();
int memcheck(int id);

void addbook();
void issbook();
void retbook();
int chkbook(int bno,int gno,int no);

void transac1(int mid,char ch);


void transac2(int mid,int bno,int gno,int no,char c);

void allmem();
void allbook();
void alltransac();

void showhelp();

/**************************** MAIN
******************************************/

void main()
{
int ch,ch1,ch2,ch3;
printf("****************************************************************\
n");
printf("\n Library Management System\n");
printf("\n -By Akrati and Palwinder");
printf("\n***************************************************************
*\n");
fm=fopen("member.dat","a+");
ft=fopen("trans.dat","a+");
fb=fopen("book.dat","a+");

mainscr();

while(1)
{
bk:
showmenu(mainmenu,5,10,35);
ch=getchoice(mainmenu,"MBRHE",10,35,5);
switch(ch)
{
case 1:bk1:
showmenu(memmenu,4,10,35);
ch1=getchoice(memmenu,"ARIB",10,35,4);
switch(ch1)
{
case 1: addmember(); goto bk1;
case 2: renewmem(); goto bk1;
case 3: memdupid(); goto bk1;
case 4: goto bk;
}
break;
case 2:bk2:
showmenu(bookmenu,4,10,35);
ch2=getchoice(bookmenu,"AIRB",10,35,4);
switch(ch2)
{
case 1: addbook(); goto bk2;
case 2: issbook(); goto bk2;
case 3: retbook(); goto bk2;
case 4: goto bk;
}
break;
case 3:bk3:
showmenu(rptmenu,4,10,35);
ch3=getchoice(rptmenu,"MBTB",10,35,4);
switch(ch3)
{
case 1: allmem(); goto bk3;
case 2: allbook();goto bk3;
case 3: alltransac();goto bk3;
case 4: goto bk;
}
break;
case 4:
showhelp(); break;
case 5:fclose(ft); fclose(fm); fclose(fb);
exit();
}
}
}
/******************** Function Do Display The Main Screen
*******************/
void mainscr()
{
int i,j;
clrscr();
textcolor(BLUE);
for(i=1;i<80;i++)
for(j=1;j<24;j++)
{
gotoxy(i,j); cprintf("Û");
}
textbackground(BLUE);
textcolor(LIGHTMAGENTA);
gotoxy(8,1);
cprintf("ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»");
gotoxy(8,2);
cprintf("º ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ» º");
gotoxy(8,3);
cprintf("ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹ Welcome To Obaid Books ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹");
gotoxy(8,4);
cprintf("º ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ º");
gotoxy(8,5);
cprintf("ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ");
textcolor(RED);
gotoxy(1,10);
cprintf("Loading Files Please Wait...");
textcolor(DARKGRAY);
for(i=1;i<81;i++)
{
gotoxy(i,12);
cprintf("°");
}
delay(200);
textcolor(LIGHTGRAY);
for(i=1;i<81;i++)
{
gotoxy(i,12);
cprintf("±");
delay(50);
}
textcolor(WHITE);
for(i=1;i<81;i++)
{
gotoxy(i,12);
cprintf("Û");
delay(20);
}
textcolor(WHITE);
}

/************************** The Showmenu function


***************************/
void showmenu(char **menu,int count,int sr,int sc)
{
int i; clrscr();
textcolor(LIGHTMAGENTA);
gotoxy(8,1);
cprintf("ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»");
gotoxy(8,2);
cprintf("º ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ» º");
gotoxy(8,3);
cprintf("ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹ Welcome To Obaid Books ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹");
gotoxy(8,4);
cprintf("º ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ º");
gotoxy(8,5);
cprintf("ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ");

for(i=0;i<count;i++)
{
gotoxy(sc,sr++); textcolor(DARKGRAY); cprintf(menu[i]);
}
}

/***********************Funtion To Get User's


Choice*************************/
int getchoice(char **menu,char *hotkeys,int r,int c,int count)
{
int choice=1,hotkeychoice=1,ascii,scan;
char *s;
while(1)
{
gotoxy(c,r+choice-1); textcolor(WHITE+BLINK); cprintf(menu[choice-1]);
while(!kbhit())
;
ascii=getch();
if(ascii==0)
scan=getch();

gotoxy(c,r+choice-1); textcolor(DARKGRAY); cprintf(menu[choice-1]);


if(ascii==0)
{
if(scan==80)
choice++;

if(scan==72)
choice--;

if(choice==0)
choice=count;

if(choice>count)
choice=1;
}
else
{
if(ascii==13)
return(choice);

s=hotkeys;
hotkeychoice=1;

while(*s)
{
if(ascii==*s)
return(hotkeychoice);

hotkeychoice++;
s++;
}

}
}
}

/*********************Function To Add New


Members****************************/
void addmember()
{
clrscr();
rewind(fm);
while( fread(&M,sizeof(M),1,fm)==1)
;
M.mid+=1;
fseek(fm,0,SEEK_END);
printf("\n\t Enter Name::");
fflush(stdin);gets(M.mname); M.mname[19]=' '; M.mname[20]='\0';
printf("\n\t Enter Add::");
fflush(stdin);gets(M.madd); M.madd[29]=' '; M.madd[30]='\0';

getdate(&d);
M.ms.year=d.da_year; M.ms.day=d.da_day; M.ms.mon=d.da_mon;
M.me.day=M.ms.day; M.me.year=M.ms.year; M.me.mon=(M.ms.mon+6);
/*To Set Month After Dec To Jan*/
if(M.me.mon>12)
{
M.me.year+=1; M.me.mon=(M.me.mon-12);
}
/*If Say The Old Date is 31/12/2003 i.e 31 Dec Then The New Date is 31/06/2004
i.e 31 Jun
But Jun consists of Only 30 days so we shall add 1 day extra so the correct Date is
01/07/2004 */
if(M.me.day==31)
{ /*Months Like Apr,Jun,Sep, & Nov have 30 days*/
if(M.me.mon==4 || M.me.mon==6 || M.me.mon==9 || M.me.mon==11)
{
M.me.day=1;
M.me.mon+=1;
}

/*For the Month of Feb there are 28 OR 29 days*/


if(M.me.mon==2)
{/*For Years like(1996,2000,2004 etc there are 29 days in Feb */
if( (M.me.year%4)==0)
{
M.me.day=31-29; M.me.mon+=1;
}
else
{
M.me.day=31-28; M.me.mon+=1;
}
}
}
fwrite(&M,sizeof(M),1,fm);
transac1(M.mid,'A');
}

/**********************Function To Renew A
Member****************************/
void renewmem()
{
FILE *tt;
int no,ch;
clrscr();
tt=fopen("temp1.dat","w");
printf("\n\t Enter Membership Id::"); scanf("%d",&no);
ch=memcheck(no);
if(ch==FALSE)
{
printf("\n\t No Such Member....."); getch(); return;
}
rewind(fm);
while( fread(&M,sizeof(M),1,fm)==1 )
{
if(M.mid==no)
{
M.me.mon=(M.me.mon+6);
if(M.me.mon>12 && M.me.mon!=12)
{
M.me.year+=1; M.me.mon=(M.me.mon-12);
}
if(M.me.day==31)
{
if(M.me.mon==4 || M.me.mon==6 || M.me.mon==9 ||
M.me.mon==11)
{
M.me.day=1;
M.me.mon+=1;
}
if(M.me.mon==2)
{
if( (M.me.year%4)==0)
{
M.me.day=31-29; M.me.mon+=1;
}
else
{
M.me.day=31-28; M.me.mon+=1;
}
}
}

fwrite(&M,sizeof(M),1,tt);
}
else
fwrite(&M,sizeof(M),1,tt);
}
fclose(tt); fclose(fm);
remove("member.dat");
rename("temp1.dat","member.dat");
fm=fopen("member.dat","a+");
printf("\n\t Member Renewed..");
getch();
transac1(no,'E');
}

/********************Function To Issue Duplicate Id Card*********************/


void memdupid()
{
int no,ch;
clrscr();
printf("\n\t Enter Membership Id::"); scanf("%d",&no);
ch=memcheck(no);
if(ch==FALSE)
{
printf("\n\t No Such Member....."); getch(); return;
}
printf("\n\t Duplicate ID Issued....");
getch();
transac1(no,'D');
}

/*************************Function To Check A
Member*************************/

int memcheck(int id)


{
rewind(fm);
while(fread(&M,sizeof(M),1,fm)==1)
{
if(M.mid==id)
return TRUE;
}
return FALSE;
}

/*************Function To Record Transaction Made By


Members*****************/
void transac1(int mid,char ch)
{
rewind(ft);
while(fread(&T,sizeof(T),1,ft) ==1)
;
fseek(ft,0,SEEK_END);
T.tid+=1; T.mid=mid;
T.reason=ch;
T.b.bno=0; T.b.gno=0; T.b.no=0;
getdate(&d);
T.i.day=d.da_day; T.i.mon=d.da_mon; T.i.year=d.da_year;
T.r.day=0; T.r.mon=0; T.r.year=0;
if(ch=='A')
T.fine=500;
else if(ch=='E')
T.fine=300;
else if(ch=='D')
T.fine=50;
fwrite(&T,sizeof(T),1,ft);
}

/*******************Function To Add Books To The


Library*********************/

void addbook()
{
int num,i;
clrscr();
rewind(fb);
while( fread(&B,sizeof(B),1,fb)==1)
;
B.b.gno+=1; getdate(&d); B.b.bno=d.da_year;
fseek(fb,0,SEEK_END);
printf("\n\t Enter No Of Books::"); scanf("%d",&num);
fflush(stdin);
printf("\n Enter Name::"); gets(B.bname); B.bname[19]=' '; B.bname[20]='\0';
fflush(stdin);
printf("\n Enter Author's Name::"); gets(B.author); B.author[14]=' '; B.author[15]='\0';
fflush(stdin);
printf("\n Enter Publisher's Name::"); gets(B.pub); B.pub[19]=' '; B.pub[20]='\0';
fflush(stdin);
printf("\n Enter Book Price::"); scanf("%d",&B.price);
for(i=0;i<num;i++)
{
B.b.no=i+1;
fwrite(&B,sizeof(B),1,fb);
}
}

/*******************Function To Issue Book To Members


***********************/

void issbook()
{
int i,j,k,id;
int f1,f2;
clrscr();
gotoxy(5,1); cprintf("Enter Book id::");
gotoxy(9,2); cprintf("/");gotoxy(13,2); cprintf("/");

gotoxy(5,2); scanf("%d",&i);
gotoxy(10,2); scanf("%d",&j);
gotoxy(14,2);scanf("%d",&k);
f1=chkbook(i,j,k);
if(f1==FALSE)
{
printf("\n\t No Such Book....."); getch(); return;
}

printf("\n\t Enter Membership id::");


scanf("%d",&id);
f2=memcheck(id);
if(f2==FALSE)
{
printf("\n\t No Such Member....."); getch(); return;
}
transac2(id,i,j,k,'I');
printf("\n\t Book Issued....");
getch();
}

/*****************Function To Return Book To The


Library*********************/

void retbook()
{
int i,j,k,id;
int f1,f2,f3;
f3=FALSE;
clrscr();
gotoxy(5,1); cprintf("Enter Book id::");
gotoxy(9,2); cprintf("/");gotoxy(13,2); cprintf("/");

gotoxy(5,2); scanf("%d",&i);
gotoxy(10,2); scanf("%d",&j);
gotoxy(14,2);scanf("%d",&k);
f1=chkbook(i,j,k);
if(f1==FALSE)
{
printf("\n\t No Such Book....."); getch(); return;
}
printf("\n\t Enter Membership id::");
scanf("%d",&id);
f2=memcheck(id);
if(f2==FALSE)
{
printf("\n\t No Such Member....."); getch(); return;
}
rewind(ft);
while(fread(&T,sizeof(T),1,ft)==1)
{
if(T.mid==id && T.b.bno==i && T.b.gno==j && T.b.no==k && T.reason=='I')
{ f3=TRUE; break;}
}
if(f3==TRUE)
{
transac2(id,i,j,k,'R');
}
else
printf("\n\t No Such Transaction In The Records......");
}

/*******************Function To Check Bookid


********************************/

int chkbook(int i,int j,int k)


{
rewind(fb);
while(fread(&B,sizeof(B),1,fb)==1)
{
if(B.b.bno==i && B.b.gno==j && B.b.no==k)
{
return TRUE;
}
}
return FALSE;
}

/*************Function To Record Transaction Made On Books


******************/

void transac2(int mid,int bno,int gno,int no,char c)


{
FILE *tt1;
tt1=fopen("tempo","w");
rewind(ft);

while(fread(&T,sizeof(T),1,ft) ==1)
;

T.tid+=1; T.mid=mid; T.reason=c;


T.b.bno=bno; T.b.gno=gno; T.b.no=no;
getdate(&d);
T.i.day=d.da_day; T.i.mon=d.da_mon; T.i.year=d.da_year;

if(c=='I')
{
T.r.day=T.i.day; T.r.mon=T.i.mon+1; T.r.year=T.i.year;
if(T.r.mon>12 && T.r.mon!=12)
{
T.r.year+=1; T.r.mon=(T.r.mon-12);
}
if(T.r.day==31)
{
if(T.r.mon==4 || T.r.mon==6 || T.r.mon==9 || T.r.mon==11)
{
T.r.day=1;
T.r.mon+=1;
}
if(T.r.mon==2)
{
if( (T.r.year%4)==0)
{
T.r.day=31-29; T.r.mon+=1;
}
else
{
T.r.day=31-28; T.r.mon+=1;
}
}
}
T.fine=0;
fwrite(&T,sizeof(T),1,ft);
}

else if(c=='R')
{
rewind(ft);
while(fread(&T,sizeof(T),1,ft)==1)
{
if(T.mid==mid && T.b.bno==bno && T.b.gno==gno && T.b.no==no &&
T.reason=='I')
{
T.r.day=d.da_day; T.r.mon=d.da_mon; T.r.year=d.da_year;
T.reason='R';
printf("\n\t Enter Fine::"); scanf("%f",&T.fine);
fwrite(&T,sizeof(T),1,tt1);
}
else
{
fwrite(&T,sizeof(T),1,tt1);
}
}
fclose(ft); fclose(tt1);
tt1=fopen("tempo","r");
rewind(tt1);
ft=fopen("trans.dat","w");
while(fread(&T,sizeof(T),1,tt1)==1)
{
fwrite(&T,sizeof(T),1,ft);
}
fclose(ft);
ft=fopen("trans.dat","a+");
}
}

/*************Function To Display All Details Of All Members*****************/

void allmem()
{
clrscr();
rewind(fm);
printf("\n\t\t************* List Of All Members **************** ");
printf("\nÉÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»");
printf("\nºIdº Name º Address ºMember SinceºExpiration º");
printf("\nÌÍÍÎÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÍÍÍÍÍ͹");

while(fread(&M,sizeof(M),1,fm)==1)
{
printf("\nº%-2dº%-18sº%-26sº %-2d/%-2d/%-4d º %-2d/%-2d/%-4d
º",M.mid,M.mname,M.madd,M.ms.day,M.ms.mon,M.ms.year,M.me.day,M.me.mon,M.
me.year);
}
printf("\nÈÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍͼ");
getch();
}

/*************Function To Display All Details Of All Books ******************/

void allbook()
{
clrscr();
rewind(fb);

printf("\n\t\t************* List Of All Books **************** ");


printf("\nÉÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍ»");
printf("\nº BookId º Book Name º Author Name º Publisher's Name º Price º");
printf("\nÌÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍ͹");

while(fread(&B,sizeof(B),1,fb)==1)
{
printf("\nº%d%d%d º",B.b.bno,B.b.gno,B.b.no);
printf("%-19sº%-14sº%-19sº%d º",B.bname,B.author,B.pub,B.price);
}
printf("\nÈÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍͼ");
getch();
}

/*************Function To Display All Details Of All Transactions ***********/

void alltransac()
{
clrscr();
rewind(ft);

printf("\n\t\t************* List Of All Transactions **************** ");


printf("\nÉÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍËÍÍÍÍÍÍÍÍ»");
printf("\nº Trans ID º Mem Id º Book Id º Issue Date º Return Date º Fine º Reason
º");
printf("\nÌÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍÍÎÍÍÍÍÍÍÍ͹");

while(fread(&T,sizeof(T),1,ft)==1)
{
printf("\nº %3d º %3d º%9d%d%dº %-2d/%-2d/%-4d º %-2d/%-2d/%-4d º %-6.2f
º %c
º",T.tid,T.mid,T.b.bno,T.b.gno,T.b.no,T.i.day,T.i.mon,T.i.year,T.r.day,T.r.mon,T.r.year,T
.fine,T.reason);
}
printf("\nÈÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍÍÊÍÍÍÍÍÍÍͼ");

gotoxy(1,25);

textcolor(WHITE);
cprintf("A");
textcolor(DARKGRAY);
cprintf("-Member Added ");
textcolor(WHITE);
cprintf("E");
textcolor(DARKGRAY);
cprintf("-Member Renewed ");
textcolor(WHITE);
cprintf("D");
textcolor(DARKGRAY);
cprintf("-Duplicate I card ");
textcolor(WHITE);
cprintf("I");
textcolor(DARKGRAY);
cprintf("-Book Issued ");
textcolor(WHITE);
cprintf("R");
textcolor(DARKGRAY);
cprintf("-Book Returned");
getch();
}

/******************* Show Help ****************************************/

void showhelp()
{
textcolor(LIGHTGRAY);
clrscr();
textcolor(LIGHTMAGENTA);
gotoxy(8,1);
cprintf("ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»");
gotoxy(8,2);
cprintf("º ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ» º");
gotoxy(8,3);
cprintf("ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹ Welcome To Obaid Books ÌÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ͹");
gotoxy(8,4);
cprintf("º ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ º");
gotoxy(8,5);
cprintf("ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ");
textcolor(WHITE);
gotoxy(25,8);
cprintf("Library Management System");
printf("\n\t\t\t\t-Akrati and Palwinder");
printf("\n\n\tThe System Manages Addition Of New Books And Members");
printf("\n\tAnd Also Keep Records Of Transactions Such As");
printf("\n\tIssue Or Return Of A Book With Fine");
printf("\n\tRenew Existing Member Or Issue Duplicate ID");
printf("\n\n\tThe Book Is Issued For 1 Month ");
printf("\n\tThe Membership Expires After 6 Months");
printf("\n\tThe Book Id Is Of The Format year+groupno+no");
gotoxy(9,20);
textcolor(LIGHTMAGENTA);
cprintf("Send your comments/queries to ");
textcolor(LIGHTGREEN+BLINK);
cprintf("akrati.srivasta@yahoo.com");
getch();
}
TESTING

Testing is the major control measure used during software development. Its basic
function is to detect errors in the software. During requirement analysis and design, the
output is a document that is usually textual and no executable. After the coding phase,
computer programs are available that can be executed for testing purpose. This implies
that testing not only, has to uncover errors introduced during coding, but also errors
introduced during previous phase. Thus the goal of testing is to uncover the requirements,
design and coding errors in the programs. So after testing the outputs of my project are as
follows:
FUTURE SCOPE OF THE PROJECT

Our project will be able to implement in future after making some changes and
modifications as we make our project at a very low level. This project is seems to be
very useful in future for the management of library.
ACKNOWLEDGEMENT

I take this opportunity to present my votes of thanks to all those guidepost who really
acted as lightening pillars to enlighten our way throughout this project that has led to
successful and satisfactory completion of this study.
We are really grateful to our HOD Mr. Rohit Dhand for providing us with an
opportunity to undertake this project in this university and providing us with all the
facilities. We are highly thankful to Miss Sukhdilpreet Kaur for her active support,
valuable time and advice, whole-hearted guidance, sincere cooperation and pains-
taking involvement during the study and in completing the assignment of preparing
the said project within the time stipulated.
Lastly, We are thankful to all those, particularly the various friends , who have been
instrumental in creating proper, healthy and conductive environment and including
new and fresh innovative ideas for us during the project, their help, it would have
been extremely difficult for us to prepare the project in a time bound framework.

Name Akrati Srivastava &


Palvinder Gill
Registration no. 10803701&
10802672
Rollno.R246A08 &
R246A07

You might also like