//============================================= // CODE FOR MODULE 7: LAB 7 PROGRAM IS BELOW //============================================= #include "Header.h" int main() { int menu_choice = 0; int current_place = 1; string string_array[MAX_STRINGS]; do { displayMenu(menu_choice); //displays menu, takes in user menu choice processMenuChoice(menu_choice, string_array, current_place); //processes menu choice, calls relevant function } while (menu_choice != 5); }