nonstandard extension used : zero-sized array in struct/union
A structure or union contains an array with zero size.
Level-2 warning when compiling a C++ file and a Level-4 warning when compiling a C file.
Example
#include <stdio.h> struct A { int a[0]; }; void main(void) { }