/* Exponent underflow error */ #include #include int main(void) { double x = 2e-30, y=2e30,z; z = x/y; printf("The underflow error is: %5.2lf \n",z); return(0); }