Qus:    What is a Jagged array?
Dec 24, 2020 19:46 DotNet 2 Answers Views: 1349 SHIVA

A jagged array is an array whose elements are arrays. A jagged array is also known an "array of arrays."



For example -



int[][] jaggedArray = new int[5][];



 



  A jagged array is an array whose members are arrays. The members of a jagged array can be of different dimensions and sizes.

Prev Next
Answers (2)
PARTH Dec 26, 2020 10:48
Answer:   A jagged array is an array whose elements are arrays. A jagged array is also known an "array of arrays."

For example -

int[][] jaggedArray = new int[5][];

FRAUSKY Dec 29, 2020 14:06
Answer:   A jagged array is an array whose members are arrays. The members of a jagged array can be of different dimensions and sizes.

Post Your Answer
Guest User

Not sure what solution is right for you?

Choose the right one for you.
Get the help of the experts and find a solution that best suits your needs.


Let`s Connect