Next: , Previous: Variable Length, Up: C Extensions



5.13 Structures With No Members

GCC permits a C structure to have no members:

     struct empty {
     };

The structure will have size zero. In C++, empty structures are part of the language, and the language standard says they have size 1.