How to create a two dimensional (2D) array in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        int[, ] arr = new int[3, 4];
        
        for (int i = 0; i < 3; i++) {
            for (int j = 0; j < 4; j++) {
                 Console.Write("{0} ", arr[i, j]);
            }
            Console.WriteLine();
        }
    }
}




/*
run:

0 0 0 0 
0 0 0 0 
0 0 0 0 

*/



 



answered Feb 14, 2023 by avibootz

Related questions

1 answer 130 views
2 answers 132 views
1 answer 97 views
2 answers 185 views
...