Next: Unnamed Structure and Union Fields, Previous: Unions with Flexible Array Members, Up: Array, Union, and Struct Extensions [Contents][Index]
GCC permits a C99 flexible array member (FAM) to be alone in a structure:
struct only_fam { int b[]; };
The size of such a structure is zero.