Int_min, int_max

if we don’t use header file #include, we can also the use INT_MIN AND INT_MAX…So what’s the use of this header file?

@sroy3166 hey basically climits header file is used to include INTMIN and INTMAX ,but you can also use them by including header file #include<bits/stdc++.h>

#include using namespace std; int main() { cout<<INT_MAX<<endl; cout<<INT_MIN<<endl; int x = INT_MAX; cout<<x<<endl; return 0; }

if i only do this, i can easily use INT_MIN and INT_MAX

@sroy3166 hey yes you can use them with simple header file ,also limits header file contain other macro also like USHRT_MAX,UINT_MAX