How would I print the largest possible float and double in C?
问题 For the following code, #include <stdio.h> #include <limits.h> #include <float.h> int main(void) { printf("double max = %??\n", DBL_MAX); printf("double min = %??\n", DBL_MIN); printf("double epsilon = %??\n", DBL_EPSILON); printf("float epsilon = %??\n", FLT_EPSILON); printf("float max = %??\n", FLT_MAX); printf("float min = %??\n\n", FLT_MIN); return 0; } what specifiers would I have to use in place of the ??'s in order for printf to display the various quantities as appropriately-sized