English

Enlist Bitwise Operator in C Language. Explain Any 2 with Examples. - Structured Programming Approach

Advertisements
Advertisements

Question

Enlist bitwise operator in c language. Explain any 2 with examples.

Answer in Brief

Solution

The bitwise operators are listed below

1. ~ to perform bitwise NOT operation.
2. & to perform bitwise AND operation.
3. | to perform bitwise OR operation.
4. ^ to perform bitwise EXOR operation.
5. << to perform bitwise left shift operation.
6. >> to perform bitwise right shift operation.
AND operator
Example .

5 & 3 = 1

              (5)10 = (0 1 0 1)2
              (3)10 = (0 0 1 1)2

             ____________________________

                                            (0 0 0 1)2 = (1)10

OR operator
Example.

12 | 9 = 13

         (12)10 = (1 1 0 0)2
         (9)10 = (1 0 0 1)2

      _____________________________

                                (1 1 0 1)2 = (2)10

shaalaa.com
Operators in C-Programming
  Is there an error in this question or solution?
2016-2017 (June) CBCGS

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×