signed-integer पर टैग किए गए जवाब

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 ++ दोनों में, …

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.