There is no strict data types in perl unlike in other high
level languages like Java so wouldn't that be a problem if a
code in perl is to be a written by a big team of 20+
members ?"
No Answer is Posted For this Question
Be the First to Post Answer
Explain different types of perl operators.
How to read a file into a hash array?
Why does Perl not have overloaded functions?
What does `$result = f() .. g()' really return?
How does polymorphism work in perl?
What value is returned by a lone `return;’ statement?
Explain perl.
Write the program to process a list of numbers.
Difference between the variables in which chomp function work ?
Differences between die and exit.
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
Explain chop?