14
votes
10answers
1k views
Why is two’s complement used to represent negative numbers?
I'm just curious if there's a reason why in order to represent -1 in binary, two's complement is used: flipping the bits and adding 1?
-1 is represented by 11111111 (two's complement) rather than (to …
2
votes
2answers
203 views
Compilers and negative numbers representations
Recently I was confused by this question. Maybe because I didn't read language specifications (it's my fault, I know).
C99 standard doesn't say which negative numbers representation should be used by …
0
votes
3answers
265 views
Change NSNumberFormatter’s negative format from (xxx.xx) to -xxx.xx
I want to change my NSNumberformatter from displaying negative numbers with parenthesis around them to putting the minus sign in front (or whatever the localized standard is).
I would assume I could …
0
votes
2answers
1k views
String.Format(”{0:C2}”, -1234) (Currency format) treats negative numbers as positive
Hi I am using String.Format("{0:C2}", -1234)
to format numbers.
is always formats the amount to a positive number, while I want it to become $-1234
