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
APPEARS IN
संबंधित प्रश्न
What do you mean by file? What are the different functions available to read data from file? Specify the different modes in which file can be opened along with syntax.
Select the correct option from multiple choice question.
Which bitwise operator is used to multiply the number by 2n where n isnumber of bits.
Select the correct option from multiple choice question.
Which operator has the lowest priority?
Explain any four standard library functions from sting.h ?
State True or False with reason.
A function can have any number of return statements.
State True or False with reason.
Comments in the program make debugging of the program easier.
Write a menu driven program to perform arithmetic operations on two integers. The menu should be repeated until user selects “STOP” option. Program should have independent user defined functions for each case.