“Perl regular expressions match the longest string possible”. What is the name of this match?
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 are the functions that can be performed using cgi program?
What are the arguments and what do they mean in perl programming?
How and what are closures implemented in perl?
Why does Perl not have overloaded functions?
How can I display all array element in which each element will display on next line in perl ?
Mention the difference between die and exit in Perl?
What are the advantages of c over Perl?
How to print escaping characters inside a string in perl?
What value is returned by a lone `return;’ statement?
What can be done for efficient parameter passing in perl? Explain.
What is automatic error handling in perl?