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