I have strings in array I want to split them into char array? is it possible??
I did this:
// skipped the portion of code
void somefunction(String[] gf){
char[] charArrays = new char[500];
charArrays = gf.toCharArray(); // not allowing to use toCharArray
// skipped the portion of code
}
char[] charArrays = new char[500];charArrays = gf.toCharArray();I know where the perfomance gain of new processors goes.