In the <math.h> library in C, the function fmin(x,y) returns the minimum value of the two arguments x and y, as documented for instance in the C++ reference.
However, is there a similar function fminimum(a,b,c,...x,y,z) available that finds the minimum of three or more arguments of the same data type?
The old fashioned way...