หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'identifier' : missing subscript
Remarks
The definition of an array with multiple subscripts is missing a subscript value for a dimension higher than one.
Example
The following example generates C2087:
// C2087.cpp
int main() {
char a[10][]; // C2087
}
Possible resolution:
// C2087b.cpp
int main() {
char b[4][5];
}