無名メンバ

いまさら知ったCの構文。

struct hoge {
int a;
};
struct hogehoge {
struct hoge;
int b;
};
...
struct hogehoge hogera;
hogera.a = 0;
これを使うとCで継承もどきができるみたい。
VC++6.0だと通るが、GCCでは通らなかったので拡張構文ぽい。