I'm declaring an array of strings very simply, hard-coded, but it keeps giving me the array type has incomplete element type error.
I guess this has something to do with the length of each array but I don't know how to fix it without setting a fixed length for the strings.
char allocate[][2][] = { // Error with or without the 2
{"value1","value2"},
{"value3","value4"}
};