#include <stdio.h>#include <limits.h>#include <float.h>
int
main (void)
{
printf ("The largest integer is: %d\n", INT_MAX);
printf ("The largest double is: %e\n", DBL_MAX);
return (0);
}
The largest integer is: 2147483647
The largest double is: 1.797693e+308