Help for this page

Select Code to Download


  1. or download this
    $a="0x10"; 
    ++$a;
    
  2. or download this
    repl> $a=010; ++$a
    9
    repl> $a="010"; ++$a
    11