Google+

Wednesday, July 14, 2010

Bit wise operator in C,.NET,JAVA,C++

C Bitwise Operators
The bitwise operators perform bitwise-AND (&), bitwise-exclusive-OR (^), and bitwise-inclusive-OR (|) operations.

Syntax:-

AND-expression:
equality-expression

AND-expression & equality-expression

exclusive-OR-expression:
AND-expression

exclusive-OR-expression ^ AND-expression

inclusive-OR-expression:
exclusive-OR-expression

inclusive-OR-expression | exclusive-OR-expression

The operands of bitwise operators must have integral types, but their types can be different. These operators perform the usual arithmetic conversions; the type of the result is the type of the operands after conversion.



Operator Description

  • &

The bitwise-AND operator compares each bit of its first operand to the corresponding bit of its second operand. If both bits are 1, the corresponding result bit is set to 1. Otherwise, the corresponding result bit is set to 0.
  • ^

The bitwise-exclusive-OR operator compares each bit of its first operand to the corresponding bit of its second operand. If one bit is 0 and the other bit is 1, the corresponding result bit is set to 1. Otherwise, the corresponding result bit is set to 0.

  • |

The bitwise-inclusive-OR operator compares each bit of its first operand to the corresponding bit of its second operand. If either bit is 1, the corresponding result bit is set to 1. Otherwise, the corresponding result bit is set to 0.

Examples
These declarations are used for the following three examples:


short i = 0xAB00;
short j = 0xABCD;
short n;

n = i & j;
The result assigned to n in this first example is the same as i (0xAB00 hexadecimal).


n = i | j;

n = i ^ j;
The bitwise-inclusive OR in the second example results in the value 0xABCD (hexadecimal), while the bitwise-exclusive OR in the third example produces 0xCD (hexadecimal).

Microsoft Specific

The results of bitwise operation on signed integers is implementation-defined according to the ANSI C standard. For the Microsoft C compiler, bitwise operations on signed integers work the same as bitwise operations on unsigned integers. For example, -16 & 99 can be expressed in binary as

11111111 11110000
& 00000000 01100011
_________________
00000000 01100000

The result of the bitwise AND is 96 decimal.

1 comment:

  1. This is the easiest topic in all the language whether it be C, .NET,JAVA and C++. This post describe the operation of bit-wise operator. It very easy to understand.See the syntax and try to apply it in your application wherever you need. Thanks.

    ReplyDelete