/* EXPONENT OVERFLOW ERROR */ #include #include int main(void) { /* Declare variables */ float a,b,c; /* Initialize variables */ a = 3.2e38; b = 60; /* Calculations */ c = a*b; /* Print value out */ printf("The overflow error is: %f \n",c); return 0; /* end of program */ }