Is it possible to create a string/char-array class with overloading operations that could preformed these operations?:
String = “Hello ” + “World”;
Where two constant strings/char-arrays “Hello ” and “World” adds and inserts into the String class. So that the class String will contain the string/char-array "Hello World".