Here's a fun little problem. Suppose you've got a system that makes use of the following struct:
struct User {
unsigned int user_id;
unsigned short access_level;
float account_balance; // stored as US dollars
}Your system is ridiculously well-tested, all the tests pass, everything works totally fine. I'll be so bold as to say it's (kinda)
(
Read more... )