Is it possible to have two arrays with flexible size inside the same structure?
I know I can do something like below
struct A {
int countB;
struct B[0];
}
But my question is: can we do something like below?
struct A {
int countB;
struct B[0];
int countC;
struct C[0];
}
If so, how do we get the offset countC?
If the foregoing is very difficult to implement, is it possible to easily cope with such situations?
aswin source
share