/* your name header here */ /*libraries*/ #include using namespace std; /*Declare your struct of type Movies here*/ /*Declare any functions you decide to create here*/ int main() { //Use this pointer whenever you need to create a dynamic array. //This is the ONLY pointer you will need for this program. //It is initialized to NULL to signify that it is currently not in use/no movie array allocated yet. Movies * movieArr = 0; return 0; } /*Define any of your functions here*/ //Reminder of the Input File Format our program should expect: /* NumberOfRecords GENRE:TITLE, year runtime rating GENRE:TITLE, year runtime rating GENRE:TITLE, year runtime rating ... */