नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'operator' : operator before comma has no effect; did you intend 'operator'?
Remarks
The compiler detected an ill-formed comma expression.
This warning is off by default. For more information, see Compiler Warnings That Are Off by Default.
Example
The following example generates C4549:
// C4549.cpp
// compile with: /W1
#pragma warning (default : 4549)
int main() {
int i = 0, k = 0;
if ( i == 0, k ) // C4549
// try the following line instead
// if ( i == 0 )
i++;
}