Explain '->' in perl?
No Answer is Posted For this Question
Be the First to Post Answer
How can you use Perl warnings and what is the importance to use them?
What are the functions that can be performed using cgi program?
What is eval function 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
What does localtime() do in perl?
How will you access an element of a perl array?
What does perl do in linux?
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?
What are the various advantages and disadvantages of perl?
What does init 5 and init 0 do?
What are the various file operations in perl. Explain with example.
Explain lexical variables.