#include #include // see page 357, 358 using namespace std; int main() { char input[100]; cout << "What is your name?"; cin.getline(input,100); if ( strcmp(input,"Max")==0 ) cout << "Hi Max, great that you are here!" << endl; else cout << "Hello, " << input << "!" << endl; return 0; }