नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'character' : unexpected in macro definition
Remarks
The character appears immediately following the macro name. To resolve the error, there must be a space after the macro name.
Example
The following example generates C2008:
// C2008.cpp
#define TEST1"mytest1" // C2008
Possible resolution:
// C2008b.cpp
// compile with: /c
#define TEST2 "mytest2"