Help for this page

Select Code to Download


  1. or download this
    print oct(0xff); # 173
    
  2. or download this
    my $num = 0xff;
    print oct($num); #wrong!
    printf('xo',$num);# right!