#include<stdio.h>
int main(void)
{
int a=-3,b=5,c;
c=a|b;
printf("%d ",c);
c=a&b;
printf("%d ",c);
}
The output is -3 5, please explain how?
The output is |
|||||||||||||||
|
|
To understand the output, you need to become familiar with the Two's Complement which is used to represent negative binary numbers. The conversion from +x to -x is actually quite easy: Complement all bits and add one. Now just assume your ints are of length 8 bits (which is sufficient to examine 5 and -3):
Now lets take a look at the bitwise or:
Exactly the represantation of -3 And now the bitwise AND:
Exactly the binary representation of 5 |
|||
|
|
|
It helps when you look at the binary representations alongside each other:
The thing to understand is that both When you OR those bits together, the 1s win. However, the 5 has a 0 in the same position as the 0 in -3, so that bit comes through the OR operation unchanged. The result ( When you do a bitwise AND, the zeroes win. However, the 1s in 5 match up with 1s in -3, so those bits come through the AND operation unchanged. The result is still 5. |
||||
|
|
|
Binary of
Bitwise OR Truth Table:
Bitwise AND Truth Table:
Also, see - What Every Computer Scientist Should Know About Floating-Point Arithmetic. |
|||||
|
|
Get some paper and a writing implement of your choice Write out -3 and 5 in binary ( See twos complement for how to do negative numbers) hint: | means OR, & means AND |
|||
|
|
|
-3 = 0xFFFD = 1111 1111 1111 1101 5 = 0101 so the bitwise or does not change the first argument ( just overlap one with ones ) and results is still -3 The bitwise and takes the coomon ones between 1101 and 0101 that is 0101=5 :) no reason to consider all the trailing one in -3 since 5 = 0000 0000 0000 0101 |
|||
|
|
|
If you know all about 2's complements, then you should know
That should give you your answer for the first, do the same with & for the second. |
|||
|
|
|
Ever hear of DeMorgan's law...??? The hint is in the linky, it is the table that epitomises and embodies the raw cold truth of logic that is pinned into the syntaxes of major language compilers... Even more worrying is the fact that you don't have the basic CS101 knowledge and posting this question (Sorry if you take this to be condescending but am not), I genuinely cannot believe you're looking at a C code and not told anything about two's complements, bitwise logic... something is very wrong here... If your college lecturer has not told you any of it, said lecturer should not be lecturing at all and find another job.... sigh |
|||||
|