The three bit operators are the bitwise and operator & , the bitwise or operator | ... 10011111 unsigned char b = 0x6A; // 11001010 unsigned char c = a & b; ...
確定! 回上一頁