What is posix in perl?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More CGI Perl Interview Questions

What are hashes?

0 Answers  


What are perl strings?

0 Answers  


What does this symbol mean '->'?

0 Answers  


Why do you use Perl?

0 Answers  


How to find out the version of PERL being installed on your LINUX machine.

4 Answers   Mind Tree,


Write an expression or perl script to identify the entered ip address is valid or not?

5 Answers   HCL,


How can you create anonymous subroutines?

0 Answers  


How can you use Perl warnings and what is the importance to use them?

0 Answers  


How will you access an element of a perl array?

0 Answers  


If you want to empty an array then how would you do that?

0 Answers  


What is the use of -w, -t and strict in Perl?

0 Answers  


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.

2 Answers  


Categories