Prev Next
min infoThe min macro compares two values and returns the smaller one. The data type can be any numeric data type, signed or unsigned. The data type of the arguments and the return value is the same. min(
Parameters
Return ValuesThe return value is the smaller of the two specified values. RemarksThe min macro is defined as follows: #define min(a, b) (((a) < (b)) ? (a) : (b)) See Also |