+ 1
what is the difference between bitwise and,conditional and operator
In c language
3 Answers
+ 1
Tq
+ 1
Bitwise AND operator compares its operands value bit by bit, literally. The operation result usually expected or treated as a number.
Logical or boolean AND compares its operands value as is. All it cares about is whether the operands were (or evaluable as) zero or non zero, it doesn't care much about the bits. The operation result usually expected or treated as boolean state.