We can convert char[] to a String with below code:
char[] c={'A','B','C'};
String s=new String(c);
Traditional Solution: Is looping through each char in char array and converting a char to String and then storing it in String each in String array.
But how to convert it from a character array to String array using predefined methods.
char[] to String[]
Q). Is there any prefined methods to convert?