C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
iOS
Java
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
12
Reply
What is Jagged Arrays?
Sumit Jolly
11y
1.3k
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
jagged arrays are arrays of array. it has different dimensions
Keerthi Venkatesan
9y
0
jagged array is array of array. its can be of different sizes of dimension.
bharat aggarwal
10y
0
Simply a jagged arrays is 2-D array in which the number of column in each row may be different..
Rahul Prajapat
10y
0
It had different dimensions but only rows will be taken but not columns for ex: a[3][2] it will be having only row values.
varunkumar reddy
11y
0
It had different dimensions but only rows will be taken but not columns for ex: a[3][2] it will be having only row values.
varunkumar reddy
11y
0
Collection of Arrays of array is called jagged array
varunkumar reddy
11y
0
It is an array of array which have different dimension in each array
Rajesh
11y
0
It is an array of array which have different dimension in each array
Rajesh
11y
0
It is an array of array which have different dimension in each array
Rajesh
11y
0
It is an array of array which have different dimension in each array
Rajesh
11y
0
A Jagged array is an array whose elements are also arrays. It can be of different sizes and dimensions. e.g. int[][] _array = new int[5][]; _array [0] = new int[2]; _array [1] = new int[3]; _array [2] = new int[5]; _array [3] = new int[3]; _array [4] = new int[4];
sarang Chandaikar
11y
0
The array which has elements of type array is called jagged array.
Sumit Jolly
11y
0
nullable types example
What is MultiDictionary?
Message