In limits.h, there are #defines for INT_MAX and INT_MIN (and SHRT_* and LONG_* and so on), but only UINT_MAX.
Should I define UINT_MIN myself? Is 0 (positive zero) a portable value?
|
In Should I define
| |||||||||||||
feedback
|
|
If you want to be "typesafe" you could use | |||||||||||||
feedback
|
|
It's an unsigned integer - by definition its smallest possible value is 0. If you want some justification besides just common sense, the standard says:
| |||||||||
feedback
|
|
You could use | |||||||||
feedback
|