I've got a structure of this type :
#define SUDOKU_SIZE 9
typedef struct {
int grid[SUDOKU_SIZE][SUDOKU_SIZE];
} sudoku_t;
But when I want to create one : struct sudoku_t sudo;
I got this error : error: storage size of ‘s’ isn’t known
Thanks