// Example 5.17. Program to display machine's range of integers #include #include // contains definitions of limits using namespace std; int main() { cout << "The smallest int on this computer is " << INT_MIN << "." << endl; cout << "The largest int on this computer is " << INT_MAX << "." << endl; return 0; }