Reversed 8bit numbers by %20

main(i,j,k){for(i=255;(j=++i)<512;printf("%d\n",k))for(k=0;j>1;j/=2)k=k*2+j%2;}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page