How to read a single line from a file in perl?
No Answer is Posted For this Question
Be the First to Post Answer
What does `new $cur->{LINK}' do? (Assume the current package has no new() function of its own.)
What is perl push array function?
What is the difference between perl array and perl hash?
What is the main function of cookie server?
What happens when you return a reference to a private variable?
What does -> symbol indicates in Perl?
Is there any way to add two arrays together?
What is the difference between $array[1] and @array[1]?
What is qq (double q)operator in perl?
Which web site will help the student to download the Java mini Project ?
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?
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