// // Author: INSERT-NAME-HERE (INSERT-ZID-HERE) // Date: INSERT-DATE-HERE // // Description: // INSERT-DESCRIPTION-HERE // #include #include #include #include "books.h" struct book { // TODO: You are required to fill in the fields of the struct. // You will need a next pointer and character arrays to store the title // and author. }; struct book *insert_book(struct book *head, char *title, char *author, int num_pages) { // TODO: complete the function. return NULL; } void print_books(struct book *head) { // TODO: complete the function. return; }