Next: Arrays of Variable Length, Previous: Unions with Flexible Array Members, Up: Extensions to the C Language Family [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.