Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    print 0777, $/;
    print 0+'0777', $/;
    printf "0%o\n",0777;
    printf "0%o\n",'0777';
    
  2. or download this
    511
    777
    0777
    01411