What is the difference between perl list and perl array?
No Answer is Posted For this Question
Be the First to Post Answer
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?
Explain USE and REQUIREMENT statements?
How do you set environment variables in perl?
What is the use of command “use strict”?
What is cpan in perl?
Which of these is a difference between Perl and C++ ?
What are the steps involved when the cgi program starts running?
Comment on data types and variables in perl.
What is the use of -t?
what is the difference b/w coldfusion MX 6 and Coldfusion MX 7?
What is the difference between for & foreach, exec & system?