Help for this page

Select Code to Download


  1. or download this
    >perl -le"$x=3; print($x+0, $x, ++$x, $x, $x++, $x, $x+0);"
    3555455
    
  2. or download this
    #include <stdio.h>
    
    ...
       //    5    5  4    5  5    5  3
       return 0;
    }