C1097: Array bounds missing

[ERROR]

Description

The non-first dimension of an array has no subscript value.

Example
  int i[3][]; // error

  
  int j[][4]; // ok

  
Tips

Specify a subscript value for the non-first dimensions of an array.