|
|
|
|
|
by CamperBob2
4191 days ago
|
|
Exactly, don't use subtraction for comparison in C.... when the difference might exceed 2^31. For many data types, like time, that will normally never happen, making subtraction the safest no-brainpower-needed approach. If in doubt, use the next larger integer type. |
|