/* * Find implementation's ranges for positive numerica data */ #include #include /* definition of INT_MAX */ #include /* definition of DBL_MIN, DBL_MAX */ int main(void) { printf("Range of positive values of type int: 1 --> %d\n",INT_MAX); printf("Range of positive values of type double: %e --> %e\n", DBL_MIN, DBL_MAX); return 0; }