一部の構造体メンバーにデフォルト値を設定することは可能ですか?次のことを試しましたが、構文エラーが発生します。
typedef struct
{
int flag = 3;
} MyStruct;
エラー:
$ gcc -o testIt test.c
test.c:7: error: expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘=’ token
test.c: In function ‘main’:
test.c:17: error: ‘struct <anonymous>’ has no member named ‘flag’