choli
code:
const char* szMyString = "Hello World";
strcpy(szMyString, "hi"); //Compiler error
strcpy((char*)szMyString. "hi ho"); //Runtime error
but you are right... change the definition of sText and you could write to the string. Not sure what would happen in plus itself tho if you were to do that