int main()
{
int a=1,b;
b=~1;
printf(""%d",b);
return 0;
}
pls explain by showing bitwise operation it will be helpful to understand...
thanks in advance.......
pls explain by showing bitwise operation it will be helpful to understand... thanks in advance....... | ||||
|
feedback
|
|
It's exactly what you might imagine. | ||||
|
feedback
|
|
This identity should help you remember the behaviour of
Applying it to 1:
In bits:
| ||||
|
feedback
|
|
Here is what is happening:
If you think about a signed integer, 0: 00000000 -1 -1: 11111111 -2: 11111110 Basically, start from zero and subtract two and see what you get. | |||
|
feedback
|
afor? – Andy T Feb 12 '11 at 19:19