ifstream infile(file2, ios::in); while (getline(infile, s)) cout << s << endl; infile.close(); } void search1(const char* fnd_file,const char*str) { string s; ifstream infile(fnd_file, ios::in); int linenum = 0; int count = 0; while (getline(infile, s))...