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.

PSU Berks CMPSC 101 students will not be tested on the notes below.

Objective #5: Use character arrays.