Contact: aviboots(AT)netvision.net.il
40,026 questions
51,982 answers
573 users
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 */