Search

11/01/2006

bit manipulation

int I,J;
I = 257 /8;
J = 456 % 32;

int I,J;
I = 257 >>3;
J = 456 - (456 >> 4 << 4);

沒有留言: