Is it possible to append a single character to the end of array or string in java
for example:
private static void /*methodName*/ () {
just add them like this :
String character = "a"; String otherString = "helen"; otherString=otherString+character; System.out.println(otherString);