Programming Languages C++ Subjective
Mar 13, 2013

How can i display all array element in which each element will display on next line in Perl ?

Detailed Explanation

@array_declared=('ab','cd','ef','gh');
 
foreach (@array_declared)
 
{
 
print "$_n";
 
}

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback