/**************************************************************************** * math4.c * * Computer Science 50 * David J. Malan * * Computes and prints a floating-point total. * * Demonstrates use of floating-point math. ***************************************************************************/ #include int main(int argc, char *argv[]) { float answer = 17 / 13.0; printf("%.2f\n", answer); }