#include <stdio.h>
#include <stdlib.h>
int mult(float a, float b, float c)
{
printf("%f",a*b*c);
return(0);
}
int main()
{
float x,y;
x=23.9;
y=12.9;
mult(x,y,3.87);
//system("pause");
return(0);
} Testei assim e está funcionando perfeitamente. O pause tá comentado porque to usando linux, se tu estas no windows, pode remover o comentario.