Explain goto expr?
No Answer is Posted For this Question
Be the First to Post Answer
Consider the following example #! /bin/perl use strict; sub sample { my @arr=(1,2,3,4); return @arr; } my ($a,$b,$c,$d) = &sample; print "$a\n$b\n$c\n$d\n"; In the above code, How can I get the $c without using the arguments such as $a,$b. I don't want to use any array to get the return values.
What is the purpose of redo statement?
How to close a directory in perl?
What is a chomp() function in perl?
Define operators used in perl?
What are the different ways to run cgi?
what is the procedure to define a user define module in your perl application?
What happens to objects lost in "unreachable" memory, such as the object returned by Ob->new() in `{ my $ap; $ap = [ Ob->new(), $ap ]; }' ?
What elements of the Perl language could you use to structure your code to allow for maximum re-use and maximum readability?
What is the use of '>>' in perl?
What is it meants by '$_'?
What is qq (double q)operator in perl?