#include "Header.h" //12a //int main() //{ //initializations // string strData[100]; // int cnt = 1; //title and prompt // cout << setw(65) << "--String Reader--\n" // << endl; // cout << "You can enter up to one hundred strings. When finished entering, please type \"done,\" and your strings will display.\n"; //get string data // getStringData(strData, cnt); //display // displayStrings(strData, cnt); //} //12b //int main() //{ //initializations // string strData[100]; //title and start prompt // cout << setw(65) << "--String Reader--\n" // << endl; // cout << "You can enter up to one hundred strings. When finished entering, please type \"done,\" and your strings will display.\n"; //get string data // getStringData(strData); //display // displayStrings(strData); //find string // findString(strData); //} //12c int main() { //initializations string strData[100]; //title and start prompt cout << setw(65) << "--String Reader--\n" << endl; cout << "You can enter up to one hundred strings. When finished entering, please type \"done,\" and your strings will display.\n"; //get string data getStringData(strData); //display displayStrings(strData); //find string findString(strData); //remove string removeString(strData); return 0; }