Question: Write a C program for a library automation which gets the ISBN number, name, author and publication year of the books in the library. The

 Write a C program for a library automation which gets the

Write a C program for a library automation which gets the ISBN number, name, author and publication year of the books in the library. The status will be filled by the program as follows: if publication year before 1985 the status is reference else status is available. The information about the books should be stored inside a linked list. The program should have a menu and the user inserts, displays, and deletes the elements from the menu by selecting options. The following data structure should be used. struct bookList{ char ISBN[ 20 ]; char Name[ 20 ]; char Author[ 20 ]; int Year; char Status(20); struct bookList *next; } INFO; The following menu should be used in the program: Press 1 to insert a book Press 2 to display the book list Press 3 to delete a book from list. Hint: use strcpy to fill Status

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!