Write a program to concatenate the $firststring and $secondstring and result of these strings should be separated by a single space.
No Answer is Posted For this Question
Be the First to Post Answer
What does cgi program store?
What is goto statement in perl?
How do I print the entire contents of an array with Perl?
What is cpan ? What are the modules coming under this?
How to count no of occurrence of a unique patterns in perl?
What is the difference between die and exit in perl?
What are scalar data and scalar variables?
Which functions in Perl allows you to include a module file or a module and what is the difference between them?
What are the two ways to get private values inside a subroutine?
What are the reasons that cookie server can’t handle multiple connections?
What are numeric operators in perl?
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.