Write an expression that concatenates the string variable suffix onto the end of the string variable prefix.
LANGUAGE: C++
CHALLENGE:
Write an expression that concatenates the string variable suffix onto the end of the string variable prefix.
SOLUTION:
prefix+suffix
Posted in C++, Learn To Code