Which of the following would correctly declare and instantiate a 2D array with a total of 20 ints? Choose all that apply.
a) int array[5][4];
b) int array[2][10];
c) int array[10][2];
d) int array[20];

Q&A Education