[c++] INT_MAX vs umeric_limits<int>::max()

From: Val (valmont_programming_at_hotmail.com)
Date: 02/19/05


Date: Sat, 19 Feb 2005 17:17:30 +0100

Is there a difference between...
const int VarName = umeric_limits<int>::max();
and...
const int VarName = INT_MAX;
...?