in reply to Initialize array

it would help if you could post a code example.

use the \<CODE\> tags for this.

you can initialize by

my @array; # or my @array = (); # or my @array = 0; # or ... many other ways

~Particle