What does `$result = f() .. g()' really return?
No Answer is Posted For this Question
Be the First to Post Answer
What is a chop() function in perl?
my @array=('data1','data2'); my @array1=('data1','data2'); my ($i,$k); $i=7; $k=7; while($i){ $array [++$#array] = 'ree'; $i--; print "@array"; } while($k){ push(@array1,'ree'); $k--; print "@array1"; } Are these two while loop are doing the same functionality ? What may be the difference?
Write syntax to add two arrays together in perl?
Can any1 tell me 2 write the script using perl script 2 looking at a log file 2 see wheather the test has passed or not.
What is posix in perl?
write a script to generate n prime no.s?
When does circular reference occur?
Create a function that is only available inside the scope where it is defined ?
What's the difference between /^Foo/s and /^Foo/?
What is goto statement in perl?
What is the importance of perl warnings? How do you turn them on?
What are scalars in perl?