what is bitwise operator?
Answer / 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 |
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?
c program to manipulate x=1+3+5+...+n using recursion
Explain #pragma in C.
what are the general concepts of c and c++
what is the syallabus of computer science students in group- 1?
how to find the given number is prime or not?
What is a class?
why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?
What is hash table in c?
how to find out the reverse number of a digit if it is input through the keyboard?
Explain null pointer.
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?