#include #include using namespace std; int main() { int aNumber {0}; unsigned long int aBigNumber{ULONG_MAX}; cout << "The biggest short is " << SHRT_MAX << endl; cout << "The smallest short is " << SHRT_MIN << endl; cout << "The biggest unsigned short is " << USHRT_MAX << endl; cout << endl << endl; cout << "The biggest int is " << INT_MAX << endl; cout << "The smallest int is " << INT_MIN << endl; cout << "The biggest unsigned int is " << UINT_MAX << endl; cout << endl << endl; cout << "The biggest long is " << LONG_MAX << endl; cout << "The smallest long is " << LONG_MIN << endl; cout << "The biggest unsigned long is " << ULONG_MAX << endl; cout << endl << endl; cout << "aNumber = " << aNumber << endl; cout << "Setting aNumber to be INT_MAX " << endl; aNumber = INT_MAX; cout << "aNumber = " << aNumber << endl; aNumber = aNumber + 1; cout << "Adding 1 to aNumber " << endl; cout << "aNumber = " << aNumber << endl; cout << endl << endl ; cout << "aBigNumber = " << aBigNumber << endl; aBigNumber = aBigNumber + 1; cout << "Adding 1 to aBigNumber" << endl; cout << "aBigNumber = " << aBigNumber << endl; cout << endl << endl ; return 0; }