Which of the following initialization strategies for the array "dayhigh" with seven values is correct?
-
A
int dayhigh[] = { 24, 23, 24, 25, 25, 23, 21 };
-
B
int dayhigh [] = new int[24, 23, 24, 25, 25, 23, 21];
-
C
int dayhigh = { 24, 23, 24, 25, 25, 23, 21 };
-
D
int[] dayhigh = { 24, 23, 24, 25, 25, 23, 21 };