max
The 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(
value1, // low-order word
value2 // high-order word
);
Parameters
value1
Specifies the first of two values.
value2
Specifies the second of two values.
Return Values
The return value is the greater of the two specified values.
Remarks
The max macro is defined as follows:
#define max(a, b) (((a) > (b)) ? (a) : (b))
Requirements
** Windows NT/2000/XP:** Included in Windows NT 3.1 and later.
** Windows 95/98/Me:** Included in Windows 95 and later.
** Header:** Declared in Windef.h.
See Also