#include #include #include #include using namespace std; #define MAX_STRINGS 150 void displayMenu(int&); //displays menu, takes in user menu choice void processMenuChoice(int, string[], int&); //processes menu choice, calls relevant function void addStrings(string[], int&); //gives user ability to add strings to the array void printArray(string[], int&); //prints all strings in the array void findString(string[], int&); //gives user ability to search for strings or substrings within the array, displays if they are found void removeString(string[], int&); //gives user ability to remove a string from the array based on string location, displays removed string