How to deleting an existing file in perl programming?
No Answer is Posted For this Question
Be the First to Post Answer
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?
What is lexical variable in perl?
What are the arguements we normally use for perl interpreter?
How do I pass a command line argument in perl?
write a perl script to find whether a given line of text is starting and ending with same word or not ???
How to connect with sqlserver from perl and how to display database table info?
Explain a tell function in perl?
what r the different type of function in perl ???
Why should I use the -w argument with my Perl programs?
Which has the highest precedence, List or Terms? Explain?
What do you mean by context of a subroutine?
How to find the length of an array in perl?