Help for this page
Select Code to Download
Select
or
download this
c = c++;
Select
or
download this
my $c = 2; $c = $c ++ ; # $c is now 2 $c = ++$c ; # $c is now 3