Discussion :: Arrays - C#
-
Which of the following is the correct output of the C#.NET code snippet given below?
int[ , , ] a = new int[ 3, 2, 3 ]; Console.WriteLine(a.Length);
Answer : Option C
Explanation :
No answer description available for this question.
Be The First To Comment