नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
comma operator within array index expression
Remarks
When a comma occurs in an array index expression, the compiler uses the value after the last comma.
Example
The following example generates C4709:
// C4709.cpp
// compile with: /W4
#include <stdio.h>
int main()
{
int arr[2][2];
arr[0][0] = 10;
arr[0][1] = 11;
// Prints 10, not 11
printf_s("\n%d",arr[0][1,0]); // C4709
}