Answer Posted / vignesh1988i
bitwise operator is nothing but do logical manipulations in bits (lower format).
it needs 2 operands.
for eg : 7 & 2 &- bitwise AND
0000 0000 0000 0000 0111
0000 0000 0000 0000 0010
-------------------------
0000 0000 0000 0000 0010
this performs the operation in BIT level , so only C is called as middle level language and typed to be a strong ones......
| - bitwise OR
^ - bitwise EX-OR
~ - one's complement operator.
thank you
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What will the preprocessor do for a program?
What is data structure in c and its types?
When should a type cast not be used?
What do you know about the use of bit field?
What is the function of this pointer?
What's the best way of making my program efficient?
What are local variables c?
What are variables and it what way is it different from constants?
Which is the best website to learn c programming?
What is the easiest sorting method to use?
What is the use of a ‘ ’ character?
What are the disadvantages of c language?
Difference between malloc() and calloc() function?
What are the two types of structure?