Hi, I am a accountant. I am preparing a balance sheet but
because of staff shortage and time pressures I cant complete
it on time. There is lot of common data with last years
which I need not retype and I can manage by editing last
year’s balance sheet ? Is their any software on net where I
can do this easily??
No Answer is Posted For this Question
Be the First to Post Answer
What package you use to create a windows services?
Explain the meaning of subroutine?
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?
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.
How would you replace a char in string and how do you store the number of replacements?
sort a word "system" in perl/shell without using built in functions output should be emssty
How can arrays be tied?
What is posix in perl?
How does polymorphism work in perl?
How do you match one letter in the current locale?
How do you give functions private variables that retain their values between calls?
What is the purpose of goto expr statement?