Arrays: a collection of similar data elements : Array Item « Array « Perl






Arrays: a collection of similar data elements

    


@name=("A", "B", "C",  "D");
@list=(2..10);
@grades=(100, 90, 65, 96);
@items=($a, $b, $c);
@empty=();
$size=@items;
@mammals = qw/dogs cats cows/;
@fruit = qw(apples pears peaches);

   
    
    
    
  








Related examples in the same category

1.An array is an ordered list of scalars: strings and/or numbers.
2.A program that prints the elements of a list.
3.Print an element in a list of variables
4.Store various type values in an array
5.Append two arrays to form another array
6.Duplicate array elements
7.Mixed Lists
8.Mixed Data Assigned to Array Cells
9.Array Elements
10.Append to array
11.Get array last element
12.Creating and initializing an array with list assignment