Hacker News new | ask | show | jobs
by knert 387 days ago
How do you store negative numbers?
2 comments

Maybe as in accounting, one column for benefits, one for debts?
You use a signed integer type, so you just store a negative number.

You can think of fixed point as equivalent to ieee754 floats with a fixed exponent and a two’s complement mantissa instead of a sign bit.