Answer Posted / harish
An operator that manipulates individual bits. The operators that we are are familiar with, such as the addition operator (+),multiplication (*),division (/) etc ... work with bytes or groups of bytes. Occasionally, however, programmers need to manipulate the bits within a byte. The C programming language supports the following bitwise operators:
>> Shifts bits right
<< Shifts bits left
& Does an AND compare on two groups of bits
| Does an OR compare on two groups of bits
^ Does an XOR compare on two groups of bits
~ Complements a group of bits
and lots more.....
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is 2c dna?
What is the meaning of ?
Is javascript based on c?
Explain how can a program be made to print the line number where an error occurs?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Tell us bitwise shift operators?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What is the difference between pure virtual function and virtual function?
Explain what are binary trees?
Write a code on reverse string and its complexity.
Explain how can I make sure that my program is the only one accessing a file?
How to implement a packet in C
Where local variables are stored in c?
Describe dynamic data structure in c programming language?