I need to implement a function with the following signature:
int rec(int board[SIZE][SIZE][10])
* SIZE is a const.
The function should be recursive. The board itself is 2 dimensional, and the 3rd dimension is used for holding the cell's possible values.
My question is: how can i scan the board recursivly, without the function accepting the current row and column of the board as parameters?