I was wondering if it is possible to set the length of an array to another given value in the same structure? I want this lenght to be constant, no need to make a dynamic array or something like that Something like this code below
struct Screen {
int x ;
int y ;
int rows ;
int columns ;
char screen[rows][columns] ;
}
I'm very new to C-based languages, it's certainly a very basic knowledge, but hey, that's why I'm learning! (Also excuse my bad English) Any Response would be welcome !