What are the advantages of perl programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of -n and -p options?
what r the future opportunities in PERL/LINUX after 3 years ??
What can be done for efficient parameter passing in perl?
Explain goto label, goto name, and goto expr?
You want to read command-line arguements with perl. How would you do that?
Is perl a case sensitive language?
What is the difference between single (') and double (") quote in a string in perl?
What does this symbol mean '->'?
How can arrays be tied?
How to access parameters passed to a subroutine in perl?
What is perl scripting?
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