/* ------------------------------------------------------------------- */ /* Problem 1 */ #include #include int main(void) { float a, b, c; a = 1; b = 0; c = a/b; /* Print c */ printf("The value of C is equal to %5f \n",c); /* Exit program */ return(0); } /* ---------------------------------------------------- */