C# Programming - Arrays - Discussion

Discussion Forum : Arrays - General Questions (Q.No. 6)
6.
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);
20
4
18
10
5
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
11 comments Page 2 of 2.

Shyam said:   1 decade ago
3*2*3=18;


Post your comments here:

Your comments will be displayed after verification.