SOURCE FILE: ex0517.cpp


// Example 5.17. Program to display machine's range of integers 
   
#include <iostream.h>
#include <limits.h>   // contains definitions of limits 
   
int main(void)   
{   
   cout << "The smallest int on this computer is " 
        << INT_MIN << ".\n";
   cout << "The largest int on this computer is "  
        << INT_MAX << ".\n";

   return 0;
}