what is the function that is used to identify how many characters are there in a string?
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 happens when you return a reference to a private variable?
what are the strategies followed for multiple form interaction in cgi programs?
What are the purpose of close(), getc() and read() functions?
How will you open a file in read-only mode in perl?
Write syntax to add two arrays together in perl?
what is the difference b/w coldfusion MX 6 and Coldfusion MX 7?
Explain goto label, goto name, and goto expr?
What is perl shift array function?
What is the difference between single (') and double (") quote in a string in perl?
What does last statement do in perl?
What are prefix dereferencer?