Bitwise XOR (^) 0^0 is 0 0^1 is 1 1^0 is 1 1^1 is 0. Bitwise NOT (~) ~0 is 1 ~1 is 0. Example int main() { int x; x=5&12; printf(“%d”,x);
確定! 回上一頁