6
क्यों एक बिट क्षेत्र के लिए एक ही मूल्य वापस नहीं दे रहा है एक मूल्य प्रदान कर रहा है?
मैंने इस 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"); } C और C ++ दोनों में, …