Closed tyfkda closed 1 year ago
struct Foo { int count; int buffer[]; // <= }; sizeof(struct Foo) == sizeof(int) static struct Foo foo = {1, {2, 3, 4}};
Check:
struct Foo arr[5];
struct Bar { struct Foo foo; int after; }
struct Foo foo;
//
Check:
struct Foo arr[5];
struct Bar { struct Foo foo; int after; }
struct Foo foo;
//