/**************************************************************************** * math5.c * * Computer Science 50 * David J. Malan * * Computes and prints a floating-point total. * * Demonstrates use of casting. ***************************************************************************/ #include int main(void) { float answer = 17 / (float) 13; printf("%.2f\n", answer); }