Files
dsa-competitive-programming/leetcode/lc7/notes.md
T
2026-01-29 01:04:37 +05:30

289 B

INT_MAX, INT_MIN are called integer limit macros or more generally type limit constants.(compile-time constants) defined in #include

Modern Alternative:

#include

numeric_limits::max(); numeric_limits::min();

int maxInt = std::numeric_limits::max();