What is perl shift array function?
No Answer is Posted For this Question
Be the First to Post Answer
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?
Explain the execution of a program in perl.
What syntax is used for grep() function?
What is the importance of perl warnings?
Which of these is a difference between Perl and C++ ?
List the operator used in Perl?
What is the peculiarity of returning values by subroutines in perl?
Explain ivalue in perl?
How can you create anonymous subroutines?
How to concatenate strings with perl?
write a script to display mirror image of a entered value and also check whether Palindrome
What does undef function in perl?