This code is giving me the error "expected primary-expression before ']' token." After googling and looking around Daniweb I still cannot find what this means. Can anyone enlighten me?
int board[*width][*height];
if(OpenBoard(boardName, width, height, board[][*height]))
{
}
//...
//function definition...
bool OpenBoard(std::string *boardFileName, int *width, int *height, int board[][100])