नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
expected #endif
Remarks
An #if, #ifdef, or #ifndef directive has no matching #endif directive. Be sure each #if, #ifdef, or #ifndef has a matching #endif.
Example
The following example generates C1022:
// C1022.cpp
#define true 1
#if (true)
#else
#else // C1022
Possible resolution:
// C1022b.cpp
// compile with: /c
#define true 1
#if (true)
#else
#endif