Reverse Bits FIXED by fill

main(i,j,s){for(;(i=getchar())>0;putchar(j))for(s=0;s++<8;i>>=1)j=j<<1|i&1;}

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

download

return to the top page