C# implementation of a jagged array
Program.cs
Console.WriteLine("———————————————————————————————————————————");
Console.WriteLine("Program to print the jagged array");
Console.WriteLine("———————————————————————————————————————————");
int[][] arr = new int[3][];
arr[0] = new int[] { 23, 34, 5, 99, 58, 14, 59 };
arr[1] = new int[] { 23, 34, 5, 99, 58, 14 };
arr[2] = new int[] { 23, 34, 5, 99 };
for(int i = 0; i < arr.Length; i++)
{
    for(int j = 0; j < arr[i].Length; j++)
    {
        System.Console.Write(arr[i][j] + " ");
    }
    System.Console.WriteLine();
}  
Console.WriteLine("———————————————————————————————————————————");
Output
kodingwindow@kw:~/csharp$ dotnet run
———————————————————————————————————————————
Program to print the jagged array
———————————————————————————————————————————
23 34 5 99 58 14 59 
23 34 5 99 58 14 
23 34 5 99 
———————————————————————————————————————————
kodingwindow@kw:~/csharp$ 
What Next?
C# Classes
Advertisement