What is the difference between a "jagged array" and "multidimensional array" ?Can anyone show me it practically ?

Showing Answers 1 - 6 of 6 Answers

anju

  • Mar 15th, 2007
 

array of array is jagged array and multidimention array can have more than one dimension.

  Was this answer useful?  Yes

Humaira

  • Apr 13th, 2007
 

multidimentional array has same size in all dimentions but jagged is the type of multidimentional array which has different size for its dimensions.

int array[3][3][3]; //multidimentional array
int array[3][1][6]; //jagged array

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions