Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

Please help me solve the following program via structures and linked lists

–1 vote
asked May 7, 2018 by annonymus
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 list{

char ISBN[ 20 ];

char NAME[ 20 ];

char AUTHOR[ 20 ];

int YEAR;

char STATUS[20];

struct list *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.

2 Answers

0 votes
answered May 8, 2018 by zrhans (210 points)
Could you contract a programmer to do the Job for you. This is not a question. :(
0 votes
answered May 17, 2018 by muha
edited May 18, 2018
well i can give you some hints the menu is doen like this for example:

int Menu;  //create a variable for the menu

cout << "choose an option: ";

cin >> Menu;

switch(Menu){

       case 1:

                  break;

      ...

}

for the other questions do you need to wrtie functions or are you nnot familiar with them yet
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...