A Jagged array is an array whose elements are arrays. It is also called as the array of arrays. It can be either single or multiple dimensions. int[] jaggedArray = new int[4][];
No comments