1234567
struct Book { string title; int year_published; } book[3]; Book *p_book; p_book = &book;
p_book = book;
p_book = &book[0];