#include #include using namespace std; string findStr(string a1, string t1); /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main(int argc, char** argv) { string a1 = "cpp is great and nice."; string t1 = "nice"; string yesno; yesno = findStr(a1, t1); cout<<"fine t1 or not = "<