struct data_t { int x; int y; int z; }; // 上記構造体を「指示付き初期化子」で初期化する例 data_t a = { .x = 100, .y = 101, .z = 200, };