I'm kind of stuck since i'm trying to do what is in the title. instinctively i would do this :
size = 10 //(for example)
int** pieces[10][10];
pieces* = (int*)malloc(sizeof(int*)*size);
But it doesn't even compile.
Do you have any idea ? Thank you !