I'm trying to convert a row from a matrix of Char's to a String and all I've been able to get is a bunch of memory locations. I was hoping someone can lend me a hand. Here's what I've got:
for(int c=0; c<tempBoard.length; c++){
String charArray = " ";
for(int v=0; v<tempBoard.length; v++){
board[c][v] = tempBoard[c][v];
charArray = tempBoard[c].toString();
}
System.out.println(charArray);
}