Previous topic

Arrays of Length Zero

Next topic

Arrays of Variable Length

This Page

Structures with No MembersΒΆ

GCC permits a C structure to have no members:

struct empty {
};

The structure has size zero. In C++, empty structures are part of the language. G++ treats empty structures as if they had a single member of type char.