Respuesta :

Answer:

The correct answer for the given question is option(D) i.e int array[10];

Explanation:

As array is the collection of similar types of elements

we can declared array

Datatype arrayname[size];

In option(A) the size of array is 0 which is wrong thats why this option is wrong.

In option(B) the arrayname cannot start with '

 thats why this option is wrong.

In option(c)  we cannot give void datatype as a arrayname thats why this option is wrong.

So the correct option is(D) i.e int array[10];