Prev Next
max infoThe max macro compares two values and returns the larger 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. max(
Parameters
Return ValuesThe return value is the greater of the two specified values. RemarksThe max macro is defined as follows: #define max(a, b) (((a) > (b)) ? (a) : (b)) See Also |