What is perl shift array function?
No Answer is Posted For this Question
Be the First to Post Answer
Explain goto name?
List the operator used in Perl?
What is the difference between for & foreach, exec & system?
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 is confess function in perl?
What are the advantages of perl programming?
How to implement a stack in Perl?
What is a chomp() function 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?
What does last statement do in perl?
what is the procedure to define a user define module in your perl application?
How to connect to SQL server through Perl?