Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'identifier' : array initialization needs curly braces
There were no curly braces around the specified array initializer.
The following sample generates C2075:
// C2075.c
int main() {
int i[] = 1, 2, 3 }; // C2075
}
Possible resolution:
// C2075b.c
int main() {
int j[] = { 1, 2, 3 };
}