Q9
What is the correct way to declare an array of strings with 5 elements in C#?
A.
string[5] names;
B.
string[5] names = new string[];
C.
string[] names = new string[5];
AnswerD.
names[] = new string[5];
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board