#!/usr/local/bin/perl use strict; use warnings; my @a = qw/a b c/; my $a = \@a; print @{$a}; # Printing correct output abc... # It prints length of the array why? print "Dereference and Printing the Reference array " . @{$a};