
- C# Basic Tutorial
- C# - Home
- C# - Overview
- C# - Environment
- C# - Program Structure
- C# - Basic Syntax
- C# - Data Types
- C# - Type Conversion
- C# - Variables
- C# - Constants
- C# - Operators
- C# - Decision Making
- C# - Loops
- C# - Encapsulation
- C# - Methods
- C# - Nullables
- C# - Arrays
- C# - Strings
- C# - Structure
- C# - Enums
- C# - Classes
- C# - Inheritance
- C# - Polymorphism
- C# - Operator Overloading
- C# - Interfaces
- C# - Namespaces
- C# - Preprocessor Directives
- C# - Regular Expressions
- C# - Exception Handling
- C# - File I/O
- C# Advanced Tutorial
- C# - Attributes
- C# - Reflection
- C# - Properties
- C# - Indexers
- C# - Delegates
- C# - Events
- C# - Collections
- C# - Generics
- C# - Anonymous Methods
- C# - Unsafe Codes
- C# - Multithreading
- C# Useful Resources
- C# - Questions and Answers
- C# - Quick Guide
- C# - Useful Resources
- C# - Discussion
How to initialize jagged arrays in C#?
Jagged array is an array of arrays. You can declare a jagged array named marks of type int as −
int [][] marks;
Initialize the jagged array as −
int[][] marks = new int[2][]{new int[]{92,93,94},new int[]{85,66,87,88}};
The marks is an array of two array of integers.
- marks[0] is an array of 3 integers
- marks[1] is an array of 4 integers.
The following is an example displaying how to use jagged arrays and create an array of three arrays of integers.
Example
using System; namespace Demo { class Program { static void Main(string[] args) { /* a jagged array of 3 array of integers*/ int[][] a = new int[][]{new int[]{0,0},new int[]{1,2},new int[]{2,4} }; int i, j; /* output each array element's value */ for (i = 0; i < 3; i++) { for (j = 0; j < 2; j++) { Console.WriteLine("a[{0}][{1}] = {2}", i, j, a[i][j]); } } Console.ReadKey(); } } }
Output
a[0][0] = 0 a[0][1] = 0 a[1][0] = 1 a[1][1] = 2 a[2][0] = 2 a[2][1] = 4
- Related Articles
- How do you initialize jagged arrays in C#?
- How do you declare, initialize and access jagged arrays in C#?
- How to define jagged arrays in C#?
- How do you access jagged arrays in C#?
- How do you declare jagged arrays in C#
- What are jagged arrays in C#?
- How to initialize multi-dimensional arrays in C#?
- How to initialize two-dimensional arrays in C#?
- How to initialize variables in C#?
- How to access elements from jagged array in C#?
- Jagged Array in C#
- How to initialize an array in C#?
- How to initialize a vector in C++?
- What are jagged arrays and explain with an example in Java?
- How to use use an array of pointers (Jagged) in C/C++?

Advertisements