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
What is equivalent to ++i+++j?
Is boolean a datatype in c?
What are the types of type specifiers?
Explain how do you determine a file’s attributes?
How do I swap bytes?
What do you mean by dynamic memory allocation in c?
Explain how can you tell whether a program was compiled using c versus c++?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Why does this code crash?
What is sizeof in c?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
How reliable are floating-point comparisons?
What is c programing language?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above