Explain the meaning of perl one-liner?
No Answer is Posted For this Question
Be the First to Post Answer
What are the arguements we normally use for perl interpreter?
How do I do fill_in_the_blank for each file in a directory?
Write a cgi program to show the header part?
my @array=('data1','data2'); my @array1=('data1','data2'); my ($i,$k); $i=7; $k=7; while($i){ $array [++$#array] = 'ree'; $i--; print "@array"; } while($k){ push(@array1,'ree'); $k--; print "@array1"; } Are these two while loop are doing the same functionality ? What may be the difference?
What happens in dereferencing?
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
What is goto statement in perl?
What do you mean by context of a subroutine?
Where the command line arguments are stored and if you want to read command-line arguments with Perl, how would you do that?
What are the different string manipulation operators in perl?
What does perl do in linux?
Which has highest precedence in between list and terms? Explain?