You want to open and read data files with perl. How would you do that?
How to dereference a reference?
Explain join function in perl?
What are the two ways to get private values inside a subroutine?
Why does Perl not have overloaded functions?
Which feature of Perl provides code reusability ? Give any example of that feature.
Differences between die and exit.
how to search a unique pattern in a file by using perl hash map function ??? plz answer me
What does perl do in linux?
What is perl? What is the basic command to print a string in perl?
How interpreter is used in perl?
What is the usage of -i and 0s options?
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