Is one's complement a real-world issue, or just a historical one? - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T13:58:11Zhttp://stackoverflow.com/feeds/question/161797http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/161797/is-ones-complement-a-real-world-issue-or-just-a-historical-one8Is one's complement a real-world issue, or just a historical one?Roddy2008-10-02T11:24:07Z2008-10-09T08:00:03Z
<p><a href="http://stackoverflow.com/questions/160930">Another question</a> asked about determining odd/evenness in C, and the idiomatic (x & 1) approach was correctly flagged as broken for <a href="http://en.wikipedia.org/wiki/Signed_number_representations#Ones.27_complement" rel="nofollow">one's complement-based</a> systems, which the C standard allows for.</p>
<p>Do systems really exist in the 'real world' outside of computer museums? I've been coding since the 1970's and I'm pretty sure I've never met such a beast. </p>
<p>Is anyone actually developing or testing code for such a system? And, if not, should we worry about such things or should we put them into <a href="http://en.wikipedia.org/wiki/Room_101" rel="nofollow">Room 101</a> along with paper tape and punch cards...?</p>
http://stackoverflow.com/questions/161797/is-ones-complement-a-real-world-issue-or-just-a-historical-one/161811#1618112Answer by Darron for Is one's complement a real-world issue, or just a historical one?Darron2008-10-02T11:30:34Z2008-10-02T11:30:34Z<p>I've never encountered a one's complement system, and I've been coding as long as you have.</p>
<p>But I did encounter a 9's complement system -- the machine language of a HP-41c calculator. I'll admit that this can be considered obsolete, and I don't think they ever had a C compiler for those.</p>
http://stackoverflow.com/questions/161797/is-ones-complement-a-real-world-issue-or-just-a-historical-one/161818#1618188Answer by Adam Haile for Is one's complement a real-world issue, or just a historical one?Adam Haile2008-10-02T11:32:00Z2008-10-02T11:32:00Z<p>This all comes down to knowing your roots.<br />
Yes, this is technically an old technique and I would probably do what other people suggested in that question and use the modulo (%) operator to determine odd or even.
But understanding what a 1s compliment (or 2s compliment) is always a good thing to know. Whether or not you ever use them, your CPU is dealing with those things all of the time. So it can never hurt to understand the concept. Now, modern systems make it so you generally never have to worry about things like that so it has become a topic for Programming 101 courses in a way. But you have to remember that some people actually would still use this in the "real world"... for example, contrary to popular belief there are people who <em>still use assembly!</em> Not many, but until CPUs can understand raw C# and Java, <em>someone</em> is going to still have to understand this stuff.</p>
<p>And heck, you never know when you might find your self doing something where you actually need to perform binary math and that 1s compliment could come in handy.</p>
http://stackoverflow.com/questions/161797/is-ones-complement-a-real-world-issue-or-just-a-historical-one/161837#1618373Answer by sixlettervariables for Is one's complement a real-world issue, or just a historical one?sixlettervariables2008-10-02T11:36:41Z2008-10-02T11:42:38Z<p>We got off our last 1960's <a href="http://en.wikipedia.org/wiki/Honeywell" rel="nofollow">Honeyboxen</a> sometime last year, which made it our oldest machine on site. It was two's complement. This isn't to say knowing or being aware of one's complement is a bad thing. Just, You will probably never run into one's complement issues today, no matter how much computer archeology they have you do at work.</p>
<p>The issues you are more likely to run into on the integer side are <a href="http://en.wikipedia.org/wiki/Endianness" rel="nofollow">endian</a> issues (I'm looking at you <a href="http://en.wikipedia.org/wiki/PDP-11" rel="nofollow">PDP</a>). Also, you'll run into more "real world" (i.e. today) issues with <a href="http://en.wikipedia.org/wiki/VAX" rel="nofollow">floating</a> <a href="http://en.wikipedia.org/wiki/IEEE_754-2008" rel="nofollow">point</a> <a href="http://en.wikipedia.org/wiki/IBM_Floating_Point_Architecture" rel="nofollow">formats</a> than you will integer formats.</p>
http://stackoverflow.com/questions/161797/is-ones-complement-a-real-world-issue-or-just-a-historical-one/161869#1618695Answer by dongola7 for Is one's complement a real-world issue, or just a historical one?dongola72008-10-02T11:47:57Z2008-10-02T11:47:57Z<p>I work in the telemetry field and we have some of our customers have old analog-to-digital converters that still use 1's complement. I just had to write code the other day to convert from 1's complement to 2's complement in order to compensate.</p>
<p>So yes, it's still out there (but you're not going to run into it very often).</p>
http://stackoverflow.com/questions/161797/is-ones-complement-a-real-world-issue-or-just-a-historical-one/186333#1863331Answer by James Curran for Is one's complement a real-world issue, or just a historical one?James Curran2008-10-09T08:00:03Z2008-10-09T08:00:03Z<p>The CDC Cyber 18 I used back in the '80 was a 1s complement machine, but that's nearly 30 years ago, and I haven't seen one since (however, that was also the last time I worked on a non-PC)</p>