RosettaCodeData/Task/Function-definition/C++/function-definition-1.cpp

5 lines
62 B
C++

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