Soo...I'm stuck. I keep getting silly errors(commented on function), only in the function itself. Not sure why... I don't know why it is saying it's a constant char in the first place.
prototype: void displayBoard(int board[][8]);
called from int main():
1 2 3 4 5 6 7
int main()
{
int board[8][8];
//findEmpty(board);
//placeQueen(board);
displayBoard(board);
}