c位域形式

#include
struct Test{
unsigned a : 1;
};

int main()
{
struct Test test;
test.a = 1;
printf("%d\n",test.a);

return 0;
}

你可能感兴趣的:(c语言)