// get_float and printf with %f #include #include int main(void) { float price = get_float("What's the price?\n$"); printf("Your total is $%.2f.\n", price * 1.0625); }