mirror of
https://github.com/Manoj-HV30/dsa-competitive-programming.git
synced 2026-05-16 19:35:22 +00:00
289 B
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();