Bitwise Operators in C language

Bitwise operator works on bits of operands and perform bit-by-bit operation.
बिटवाइज ऑपरेटर के द्वारा ऑपरेंडस की बिट्स पर बिट बाय बिट संक्रिया की जाती है। 
If variable A = 12 (1100) and B = 5 (0101)
माना कि A = 12 (1100) एवं  B = 5 (0101)
Following table represents operator, their description and example-
निम्न तालिका में ऑपरेटर , उसका संक्षिप्त विवरण एवं उदाहरण दर्शाया गया है -
OperatorDescriptionExample
&Binary AND Operator (A&B) = 0100 = 4
|Binary OR Operator (A|B) = 1101 =13 
^Binary XOR Operator (A^B) = 1001 = 9
~Binary Ones Complement Operator(~A ) = 1011 =-13
<<Binary Left Shift Operator A << 2 = 48
110000
>>Binary Right Shift OperatorA >> 2 = 3
11


No comments:

Post a Comment