What is chomp() operator/function?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use "use strict" 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?
We all know private variables exist in perl. But do private METHODS exist in perl ? Eg ?
What is perl shift array function?
What is perl programming?
Is perl a case sensitive language?
Comment on array slicing and range operator
what is the procedure to define a user define module in your perl application?
How to deleting an existing file in perl programming?
Why do you use Perl?
what are steps to do to lock the sony ericsson mobile with password?
while(my($key, $value) = each(%hash) ) { print "$key => $value\n"; } my($key, $value); while(($key, $value) = each(%hash) ) { print "$key => $value\n"; } What is the different between these two code in case of "my" usage ?