Tagged Questions

3
votes
5answers
763 views

Floating Point Subtraction in C results zero

I have a code wriiten in C which is intended for a 16-bit microcontroller. The code essentially does lot of floating point arithmatic. The arithmatic works fine till the result is positive; but in ...
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 ...