2
क्या कोड के ब्लॉक बनाने के लिए यह बुरा अभ्यास है?
C ++ में, क्या यह खराब अभ्यास कुछ फ़ंक्शन के अंदर कोड के ब्लॉक बनाता है, जैसे कि निम्नलिखित: bool f() { { double test = 0; test = // some other variable outside this function, for example. if (test == // some value) return true; } { double test …