-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.c
15 lines (15 loc) · 1019 Bytes
/
index.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include<stdio.h>
void index(){
printf("\t\t\t###########################################################################");
printf("\n\t\t\t############ ############");
printf("\n\t\t\t############ Library management System Project in C ############");
printf("\n\t\t\t############ ############");
printf("\n\t\t\t###########################################################################");
printf("\n\t\t\t---------------------------------------------------------------------------\n");
printf("\n\t\t\t----------------------------------------------------------------------------");
printf("\n\t\t\t 1.insert a new book in libary Gallery with book details ");
printf("\n\t\t\t 2.Remove a book for this Gallery");
printf("\n\t\t\t 3.Want to borrow a book from libary");
printf("\n\t\t\t 4.return borrowing book");
printf("\n\t\t\t 5.show borrow records");
}