[ERROR]
The non-first dimension of an array has no subscript value.
int i[3][]; // error
int j[][4]; // ok
Specify a subscript value for the non-first dimensions of an array.