RosettaCodeData/Task/Function-definition/C/function-definition-1.c

5 lines
57 B
C

double multiply(double a, double b)
{
return a * b;
}