What is the difference between single (') and double (") quote in a string in perl?
No Answer is Posted For this Question
Be the First to Post Answer
How do I replace every character in a file with a comma?
Elaborate on perl bite-wise operators.
What are the options that can be used to avoid logic errors in perl?
What does redo statement do in perl?
What does file test operators do in perl?
What are the different types of perl operators?
How to renaming a file in perl programming?
You want to open and read data files with perl. How would you do that?
How many loop control keywords are there in perl?
How do you find the length of an array?
What is the function of cgiwrap in cgi programming?
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