// Program: limits.cpp // Output the smallest and the largest value of type int. #include #include int main() { std::cout << "Minimum int value is " << std::numeric_limits::min() << ".\n" << "Maximum int value is " << std::numeric_limits::max() << ".\n"; return 0; }