Computer Science, asked by bharatsahu9355, 11 months ago

What is Bitwise AND in C++?

Answers

Answered by SnehaG
0

n C, following 6 operators are bitwise operators (work at bit-level) & (bitwise AND) Takes two numbers as operands and does AND on every bit of two numbers. The result of AND is 1 only if both bits are 1.

Similar questions