Tagged Questions
0
votes
6answers
4k views
How to subtract two unsigned ints with wrap around or overflow
There are two unsigned ints (x and y) that need to be subtracted. x is always larger than y. However, both x and y can wrap around; for example, if they were both bytes, after 0xff comes 0x00. The ...