Revise notes on integer limit macros

Updated notes on integer limit macros and included modern alternatives.
This commit is contained in:
2026-01-29 01:17:29 +05:30
committed by GitHub
parent 42f55f6925
commit 599f6e5b3e
+2 -2
View File
@@ -1,9 +1,9 @@
INT_MAX, INT_MIN are called integer limit macros or more generally type limit constants.(compile-time constants)
defined in #include <climits>
defined in #include climits
Modern Alternative:
#include <limits>
#include limits
numeric_limits<int>::max();
numeric_limits<int>::min();