Explain the difference between "my" and "local" variable scope declarations. ?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of command “use strict”?
what r the different type of function in perl ???
What is the use of -w, -t and strict in Perl?
Write a script for 'count the no.of digits using regular expressions in perl..
How do I do fill_in_the_blank for each file in a directory?
Comment on data types and variables in perl.
Why do you use only Perl when there a lot of more languages available in market like C, Java?
How do I replace every TAB character in a file with a comma?
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 ?
How to merge two arrays in perl?
Packing and Unpacking. Hi, I want to get output as 0x23400000345.... in the below example How to get? i tried out, but unable to get the answer $r=0x234; $t=0x345; $y=pack('L L',$t,$r); $x1=unpack('L!',pack('P',$y)); printf("\nThe value is $x1"); I didn't get constant output
Explain what is the scalar data and scalar variables in Perl?