I have this struct:
typedef struct {
int start;
int end;
char board[10][10];
} move;
when I try initializing it this way:
char new_board[10][10]
move struct new_move = {0, 0, new_board}
I get this error:
warning C4047: 'initializing' : 'char' differs in levels of indirection from 'char (*)[10]'
any suggestions?