I have the following code:
void PrintBoard(int width, int height, char myArray[][]) { for (int i = 0; i < height; ++i) { for (int j = 0; j <