Explain cpan?
No Answer is Posted For this Question
Be the First to Post Answer
How to get help for perl?
What is perl push array function?
How are parameters passed to subroutines in perl?
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
how to get back up from private character editor which is saved in the format of .udf
What are the options that can be used to avoid logic errors in perl?
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?
Explain grooving and shortening of arrays?
Write a script to reverse a string without using Perl's built in function
Why do we use "use strict" in perl?
How to implement a stack in Perl?
what is the main function of fork() in cgi programming?