Push Back

Appends newChar to the end.

NOTE that the char has to be wrapped in single quotes as mentioned in C++ Variables and Datatypes#Character (Private)

// userText is "Hello"
userText.push_back('?'); // Now "Hello?" 
userText.length();       // Returns 6