I'm trying to understand the differences between these two systems and their impact on C programming.
From what I've learned from Wikipedia:
- both systems are used to represent negative numbers
- one's complement applies bitwise NOT to negative number (the system has +0 and -0)
- two's complement does as in step 2 and adds 1 (eliminates +/-0)
Am I missing something else?
My questions:
- which architectures support which system? What is the most common these days (1's or 2's complement)?
- in what sense should we consider these systems when programming in C? Does it mainly make sense only in embedded world?
Thanks in advance!