Home » C# Programming » Arrays

How will you complete the foreach loop in the C#.NET code snippet given below such that it correctly prints all elements of the array a? int[][]a = new int[2][]; a[0] = new int[4]{6, 1 ,4, 3}; a[1] = new int[3]{9, 2, 7}; foreach (int[ ] i in a) { /* Add loop here */ Console.Write(j + " "); Console.WriteLine(); }

Correct Answer: foreach (int j in i)

← Previous Question Next Question→

More Questions from Arrays

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion