Question: More about structs: 1. Here is a struct that represents a textbook. What are the ways you could create a function called set_textbook_info() that asks

More about structs: 1. Here is a struct that represents a textbook. What are the ways you could create a function called set_textbook_info() that asks the user for the textbook information and sets the info of the textbook struct accordingly? struct textbook \{ int num_pages, num_authors; //a11 ints as they are whole nums string title; //title of the book string* authors; //a string array of author names \}; //Define 2 different functions that will set info for a textbook set_textbook_info1( ) f //Define the following function that will create a textbook object create_textbook ( ){
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
