Sets a character of the String. Has no effect on indices outside the existing length of the String.
myString.setCharAt(index, c)
myString: a variable of type Stringindex: the index to set the character atc: the character to store to the given locationNothing