Structs don't allow arrays
Structs do not allow C-like arrays of any type.
struct MyStruct {
Q someArray[2];
MyStruct2 myStruct2;
}
Edited by Martin Fitzke
Structs do not allow C-like arrays of any type.
struct MyStruct {
Q someArray[2];
MyStruct2 myStruct2;
}