Define a structure called Bookpage which has 2 fields The fi
Define a structure called Book_page which has 2 fields. The fields include text_on_page and page_number. The text_on_page is a string that is representative of the characters/content on one page of a book and the page_number is an integer. Be sure to typedef your struct.
Solution
Answer:
typedef struct
{
string text_on_page;
int page_number;
}Book_page;
