When would `local $_' in a function ruin your day?
No Answer is Posted For this Question
Be the First to Post Answer
What is 'commit' command in perl?
sort a word "system" in perl/shell without using built in functions output should be emssty
Explain goto expr?
Mention the difference between die and exit in Perl?
Explain the difference between declarations of 'my' and 'local' variable scope in perl?
Explain what is the scalar data and scalar variables in Perl?
What happens when you return a reference to a private variable?
Comment on array slicing and range operator
Explain strftime() 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 to sort arrays in perl?
Which functions in perl allows you to include a module file.