Two dimensional array is array scalar plus array : Multidimensional Arrays « Array « Perl






Two dimensional array is array scalar plus array

    

@{$array[0]} = ("apples", "oranges");
@{$array[1]} = ("asparagus", "corn", "peas");
@{$array[2]} = ("ham", "chicken");

print $array[1][1];

   
    
    
    
  








Related examples in the same category

1.Multidimensional Arrays(Lists of Lists)
2.Using multi-dimensional array references.
3.Using multi-dimensional array references again.
4.Lists of Lists
5.How to use two dimensional arrays
6.Output two -dimensional array
7.References to Simulate Multi-Dimensional Arrays
8.Using array reference to create two-dimensional array
9.Using @ operator and one dimensioanal array to create two dimensioanl array
10.Two dimensional array is array of array
11.A three-dimensional array
12.Using array reference to index the two dimensional array
13.Using two-dimensional array
14.Program to demonstrate a pointer to a two-dimensional array
15.'use strict' with two dimensional array
16.Array of array
17.Reference the outter array of an two dimensional array
18.Using the -> to reference the elements of a two-dimensional array