Back to Browse

7.C-Operators(bitwise operator-part2)

68 views
Premiered Jan 11, 2022
37:49

The & (bitwise AND) in C or C++ 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. The | (bitwise OR) in C or C++ takes two numbers as operands and does OR on every bit of two numbers. The result of OR is 1 if any of the two bits is 1. The ^ (bitwise XOR) in C or C++ takes two numbers as operands and does XOR on every bit of two numbers. The result of XOR is 1 if the two bits are different. The (left shift) in C or C++ takes two numbers, left shifts the bits of the first operand, the second operand decides the number of places to shift. The (right shift) in C or C++ takes two numbers, right shifts the bits of the first operand, the second operand decides the number of places to shift. The ~ (bitwise NOT) in C or C++ takes one number and inverts all bits of it

Download

1 formats

Video Formats

360pmp452.8 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

7.C-Operators(bitwise operator-part2) | NatokHD