Question: This is coded in C // hwe7 Q1 add (15 points) /1 This function should add book to the head of the list of containers.
This is coded in C

// hwe7 Q1 add (15 points) /1 This function should add book to the head of the list of containers. // The function search_book () is called before calling this function, // therefore you can assume that the book is not already on the list. void add_book (char* title, char* author, float price) // hwe7 Q2 search (10 points) // In this function, you are passed the title of a book to find // If the book exists on the list, return a pointer to the requested book. If not, return NULL // (You must return a pointer to a node in your list.) struct book- search_ book(char* title)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
