Computer Science, asked by bidisha19, 10 months ago

difference between AND operator and bitwise AND operator.
BEST OF LUCK.
BY THE WAY DONT FOLLOW ME OR TEXT ME.​


Anonymous: Heya

Answers

Answered by Anonymous
4

Answer:

A Bitwise And operator is represented as '&' and a logical operator is represented as '&&'. Following are some basic differences between the two operators.

a) The logical and operator '&&' expects its operands to be boolean expressions (either 1 or 0) and returns a boolean value.

Answered by amitraja26
2
& is a bitwise operator and compared each operand bitwise.

Whereas & & is a logical AND operator and operates on boolean operands.
Similar questions