![]() |
convert a binary number to its 2’s compliment without the use of “~” (tilt) operator
Write a 'C' Program to convert a binary number to its 2’s compliment without the use of “~” (tilt) operator.
|
Re: convert a binary number to its 2’s compliment without the use of “~” (tilt) operator
A two's complement number, invert all the bits then add 1 to the result.
To invert a bit without using the "~" use the XOR operator. XOR operator needed to be done with all one's and that will invert the no then adding one will give the 2's compliment. |
| All times are GMT +5.5. The time now is 16:08. |