#include int main() { float w, x, y; x = 3, y = 2.9; w = f (x, y); printf("%.2f\n", w); return 0; } float f(float x, float y) { return x * y; }