#include #include "apstring.h" void function (apstring wordone, apstring wordtwo) { wordone = ""; wordtwo = ""; cout << "What would you like your first word to be?" << endl; cin >> wordone; cout << "What would you like your second word to be?" << endl; cin >> wordtwo; if (wordone.find(wordtwo)==-1) { cout << "Hey, " << wordtwo << " is not found in " << wordone << " ." << endl; } } int main () { apstring wordone, wordtwo; cout << "Program 1.04 - Matt Maloney" << endl << endl; function (wordone, wordtwo); return 0; }