Có thể đặt giá trị mặc định cho một số thành viên cấu trúc không? Tôi đã thử cách sau nhưng nó sẽ gây ra lỗi cú pháp:
typedef struct
{
int flag = 3;
} MyStruct;
Các lỗi:
$ 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’