How to declare and initialize jagged array in C#

1 Answer

0 votes
using System;

class Program
{
    static void Display(int[][] arr) {
        for (int i = 0; i < arr.Length; i++) {
            for (int j = 0; j < arr[i].Length; j++) {
                Console.Write($"{arr[i][j]}\t");
            }
            Console.Write("\n");
        }
    }
    static void Main() {
        int[][] arr = new int[2][];

        arr[0] = new int[]{1, 9, 7, 8, 0};
        arr[1] = new int[4];

        arr[1][0] = 8;
        arr[1][1] = 2;
        arr[1][2] = 6;
        arr[1][3] = 5;

        Display(arr);
    }
}



/*
run:

1	9	7	8	0	
8	2	6	5			

*/

 



answered Dec 13, 2020 by avibootz

Related questions

2 answers 238 views
238 views asked Jun 3, 2014 by avibootz
1 answer 218 views
1 answer 92 views
92 views asked Feb 24, 2024 by avibootz
1 answer 129 views
129 views asked Jul 29, 2021 by avibootz
2 answers 213 views
...