What does undef function in perl?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of strict?
What value is returned by a lone `return;’ statement?
Explain chop?
What are the various uses of perl?
How to open and read data files with Perl
write a script to display mirror image of a entered value and also check whether Palindrome
How do I replace every TAB character in a file with a comma?
What is the difference between localtime() and gmtime() functions?
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.
List the data types that Perl can handle?
What is cpan ? What are the modules coming under this?
What is the difference between single (') and double (") quote in a string in perl?