struct movies_t {
string title;
int year;
} films [3];
From this tutorial: http://www.cplusplus.com/doc/tutorial/structures/
If I understand correctly films is the declaration of an array of four data structures of the type movies_t. Is that correct or is there something else to this?
Thanks...