6
Dlaczego przypisanie wartości do pola bitowego nie zwraca tej samej wartości z powrotem?
Widziałem poniższy kod w tym poście Quora : #include <stdio.h> struct mystruct { int enabled:1; }; int main() { struct mystruct s; s.enabled = 1; if(s.enabled == 1) printf("Is enabled\n"); // --> we think this to be printed else printf("Is disabled !!\n"); } Zarówno w C, jak i C ++ …