We will not be studying the material on pp. 351-374 of Ch. 9 in this course.

Objective #1: Understand C++ strings.

Objective #2: Use string variables.

Objective #3: Understand the length function, string concatenation, and relational operators with string variables.

if (string1 == string2)
{
    cout << "The strings are the same!\n";
}


causes the message to be printed on the screen if the two strings, string1 and string2, are equivalent.

Objective #4: Use subscript notation to access individual characters within a string variable.