Is a macro that returns the larger of two integers.
#include <stdlib.h>
int max (
int a,
int b);
(IN) Specifies the first integer.
(IN) Specifies the second integer.
Returns the larger of the two integers.