If i will declare array in the following way:
#define N 10
char board[N][N]
And I want to write function void read_input(...)
that will get the array board
, what I need to write instead ...
?
I don't sure what it's need to be (maybey char**
or char[N][N]
? or else something?)