Hello,
I can't seem to find any example code where a 2-dimensional array is returned from the function. This is my code:
char *updateBoard(char board[3][3], int position, char piece){
//board is changed here
//want to return new board
return board;
}
any suggestions are much appreciated.