I\'m just starting to teach myself C++, and have begun learning about integer overflow. Out of curiosity I wrote some tests just to see what occurs with certain integer valu
Read up on two's complement. Basically, once you get to the highest integer that your processor can support and you add 1 to it, it goes into negative numbers by turning on the "sign" bit.