#include <stdio.h> #include <stdlib.h> struct node { char book[100]; int data; struct node *next; }; struct node *create_book(int n) { struct node *pnew=NULL; struct node *head=NULL; struct node *tail=N...