Help for this page

Select Code to Download


  1. or download this
    c = c++;
    
  2. or download this
    my $c = 2;
    $c = $c ++ ; # $c is now 2
    $c = ++$c ; # $c is now 3