6
Por que atribuir um valor a um campo de bit não está retornando o mesmo valor?
Eu vi o código abaixo nesta postagem do 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"); } Em C e C ++, …