I'm trying to understand the differences between these two systems and their impact on C programming.

From what I've learned from Wikipedia:

  1. both systems are used to represent negative numbers
  2. one's complement applies bitwise NOT to negative number (the system has +0 and -0)
  3. two's complement does as in step 2 and adds 1 (eliminates +/-0)

Am I missing something else?

My questions:

  1. which architectures support which system? What is the most common these days (1's or 2's complement)?
  2. in what sense should we consider these systems when programming in C? Does it mainly make sense only in embedded world?

Thanks in advance!

link|improve this question

67% accept rate
feedback

1 Answer

Most systems nowadays use two's complement, since it lets the computer do the same exact operation for addition/subtraction without caring about the particular sign of the number.

When you're programming, the arithmetic works regardless of the system used -- the range of the data types are defined by the language, so if it says a type will work in the range -2^31 to +2^31 - 1, then it'll work regardless of the notation. You need to be careful when working with individual bits or bit shifts, though -- those won't behave like power-of-two arithmetic in non-two's complement systems (although you're not too likely to encounter such systems, and probably never will, if you're just working with PCs).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.