Skip to content
Snippets Groups Projects
besson_blazy_wilke_bitfields_1u.c 145 B
Newer Older
Andre Maroneze's avatar
Andre Maroneze committed
struct f {
  unsigned int a0 : 1; unsigned int a1 : 1;
} bf ;
int main() {
  unsigned int a;
  bf.a1 = 1; 
  a = bf.a1; 
  printf("a=%u\n",a);
}