หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'identifier' : array initialization needs curly braces
Remarks
There were no curly braces around the specified array initializer.
Example
The following example generates C2075:
// C2075.c
int main() {
int i[] = 1, 2, 3 }; // C2075
}
Possible resolution:
// C2075b.c
int main() {
int j[] = { 1, 2, 3 };
}