if you leave out the size declarator in an array definition\nyou must furnish an initialization list\nyou…

if you leave out the size declarator in an array definition\nyou must furnish an initialization list\nyou are not required to initialize array elements\nall array elements default to zero values\nyour array will contain no elements\nnone of these
Answer
Brief Explanations:
In programming (Computer Science sub - field), when the size declarator is omitted in an array definition, the compiler infers the size from the initialization list. If there is no initialization list, it is a syntax error. So, if the size declarator is left out, an initialization list must be provided.
Answer:
you must furnish an initialization list