Introduction

C, C++, and Java support jugged arrays but nor rectangular arrays. Reference of an element of a multidimensional array uses a separate pair of brackets for each dimension. E.g. myArray[3][7]; Fortran and Ada support rectangular arrays. All subscript expression is references to elements are placed in a single pair of brackets. E.g. myArray[3, 7]; ................
................