List the prefix dereferencer in Perl.
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between require and use in perl?
How to read a file into a hash array?
Why should I use the -w argument with my Perl programs?
Explain substr function in perl?
What is the syntax used in Perl grep function?
write a script to check whether user enter a value is a leap year or not?
3 Answers Oracle, Persistent, ViPrak,
What is perl? What is the basic command to print a string in perl?
What are the functions that can be performed using cgi program?
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.
Explain perl.
What are the options that can be used to avoid logic errors in perl?
Explain subroutine?