#include #include using namespace std; int main() { int myInt; unsigned int positiveInt; unsigned long myBigNum; cout << "The size of an int is " << sizeof(int) << endl; cout << "The size of a short is " << sizeof(short) << endl; cout << "The size of a long is " << sizeof(long) << endl; cout << endl; cout << "The biggest int is " << INT_MAX << endl; cout << "The smallest int is " << INT_MIN << endl; cout << endl; cout << " 1 + 1 = " << 1 + 1 << endl; cout << " INT_MAX + 1 = " << INT_MAX + 1 << endl; cout << " INT_MIN - 1 = " << INT_MIN - 1 << endl; cout << endl; myInt = INT_MAX; cout << "myInt = " << myInt << endl; cout << endl; positiveInt = INT_MAX + 1; cout << "positiveInt = " << positiveInt << endl; cout << "UINT_MAX = " << UINT_MAX << endl; return 0; }