How do I replace every TAB character in a file with a comma?
Explain the internal working of cgi
Explain chop?
Which of these is a difference between Perl and C++ ?
How to implement a stack in Perl?
What do you mean by context of a subroutine?
Explain lists in perl?
What are the steps involved in configuring a server using cgi programming?
What is perl pop array function?
what is the function that is used to identify how many characters are there in a string?
what is the meaning of rigging?
Which web site will help the student to download the Java mini Project ?
while(my($key, $value) = each(%hash) ) { print "$key => $value\n"; } my($key, $value); while(($key, $value) = each(%hash) ) { print "$key => $value\n"; } What is the different between these two code in case of "my" usage ?