6
Pourquoi attribuer une valeur à un champ de bits ne renvoie-t-il pas la même valeur?
J'ai vu le code ci-dessous dans cet article 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"); } En C et C ++, …