You want to print the contents of an entire array. How would you do that?
No Answer is Posted For this Question
Be the First to Post Answer
What is eval function in perl?
my @array=('data1','data2'); my @array1=('data1','data2'); my ($i,$k); $i=7; $k=7; while($i){ $array [++$#array] = 'ree'; $i--; print "@array"; } while($k){ push(@array1,'ree'); $k--; print "@array1"; } Are these two while loop are doing the same functionality ? What may be the difference?
How can you create an object of a class in a package?
Comment on array slicing and range operator
How to convert strings into an array in perl?
write a script to generate n prime no.s?
What is the use of command “use strict”?
What are the different ways to run cgi?
What does this symbol mean '->'?
What can be done for efficient parameter passing in perl?
What do you mean by context of a subroutine?
What does -> symbol indicates in Perl?