#include #include #include #include using namespace std; struct Book { string name; int pages; }; int main() { vector books = { {"The Great Adventure", 320}, {"Mysteries of the Deep", 250}, {"Echoes of the Past", 310}, {"Whispers in the Wind", 230}, {"Journey to the Unknown", 293}, }; }