หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'array' : redefinition; different subscripts
Remarks
The array is already declared with a different subscript.
Example
The following example generates C2369:
// C2369.cpp
// compile with: /c
int a[10];
int a[20]; // C2369
int b[20]; // OK