How to read from a pipeline with Perl
No Answer is Posted For this Question
Be the First to Post Answer
Explain about typeglobs?
How to read from a pipeline with Perl
What is perl pop array function?
What package you use to create a windows services?
What happens when you return a reference to a private variable?
Explain chomp, chop, cpan, tk.
Write a simple regular expression to match an IP address, e-mail address, city-state-zipcode combination.
What are the various perl data types based on the context?
What do the symbols $ @ and % mean when prefixing a variable?
What is the difference between $array[1] and @array[1]?
Which guidelines by Perl modules must be followed?
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.