How many types of operators are used in the Perl?
No Answer is Posted For this Question
Be the First to Post Answer
How can you replace the characters from a string and save the number of replacements?
what is Perl one liner?
How to dereference a reference?
Mention the difference between die and exit in Perl?
What is perl shift array function?
Write syntax to add two arrays together in perl?
What is perl? What is the basic command to print a string in perl?
How to compare two strings in perl?
How many types of operators are used in the Perl?
what are prefix dereferencer and list them out?
How would you ensure the re-use and maximum readability of your perl code?
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