हिंदी

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

Advertisements
Advertisements

प्रश्न

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

संक्षेप में उत्तर

उत्तर

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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2016-2017 (June) CBCGS

APPEARS IN

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Course
Use app×