Oharra
Baimena behar duzu orria atzitzeko. Direktorioetan saioa has dezakezu edo haiek alda ditzakezu.
Baimena behar duzu orria atzitzeko. Direktorioak alda ditzakezu.
'identificador': la inicialización de matriz necesita llaves.
Observaciones
No había llaves alrededor del inicializador de matriz especificado.
Ejemplo
En el ejemplo siguiente se produce el error C2075:
// C2075.c
int main() {
int i[] = 1, 2, 3 }; // C2075
}
Posible solución:
// C2075b.c
int main() {
int j[] = { 1, 2, 3 };
}