...

/

Challenge: Define a Class that Performs Operations on a String

Challenge: Define a Class that Performs Operations on a String

Write code as a class that performs operations on a string.

Implement a String class that contains the following functions:

  • A constructor to store the string.

  • An overloaded += operator function to perform string concatenation.

  • The ...