Q38
What is the correct way to declare an array in C#?
A.
int array = new int[5];
B.
array = new int[5];
C.
int array[] = new int[5];
D.
int[] array = new int[5];
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board