http://qs321.pair.com?node_id=563987

tamaguchi has asked for the wisdom of the Perl Monks concerning the following question:

#!/usr/bin/perl -w I have noticed the folling: instead of using (scalar(@arr)) to indicate the number of ellements in an array it is possble to use $#arr. It seems that $# is a value 1 less then the scalar value.
@arr=('A', 'B', 'C', 'D', 'E', 'F', 'G');
instead of writing:
for(my $i=0; $i<(scalar(@arr)); $i++) {print"$i $arr[$i]\n";}
..one could make things little easier by writing:
for(my $i=0; $i<=$#arr; $i++) {print"$i $arr[$i]\n\n";}
What is this $# variable really, and is it correct to use it as shown above. I mean could it cause any problems if one uses $#x instead of scalar(x)? What is this