MSDN :
Int32 values are represented in 31 bits, with the thirty-second bit used as the sign bit. Positive values are presented using a representation of the sign and magnitude. Negative values are presented in two additional representations.
Is it not true that the representation of positive values using a system of signs and quantities is identical to the representation of positive values using two complement systems ?
Therefore, you should not rewrite it like this: "Int32 values (regardless of positive or negative) are presented in two additional representations",
Or am I not understanding something?
source
share