What elements of the Perl language could you use to
structure your code to allow for maximum re-use and maximum
readability?
Answer / sagar girase
the element is keyword "sub"
means write the subroutines,
which allow maximum readability
and allow maximum-reuse
if want any other;
write the classes and package..
| Is This Answer Correct ? | 12 Yes | 0 No |
“Perl regular expressions match the longest string possible”. What is the name of this match?
Why do we use "use strict" in perl?
How to connect with sqlserver from perl and how to display database table info?
Explain subroutine in perl?
How to access parameters passed to a subroutine in perl?
How can we create perl programs in unix, windows nt, macintosh and os/2 ?
Does Perl have objects? If yes, then does it force you to use objects? If no, then why?
What interface used in PERL to connect to database? How do you connect to database in Perl?
What are the different string manipulation operators in perl?
what is Perl one liner?
When do you use perl 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