max
Returns the larger of two integers
#include <stdlib.h>
int max (
int a,
int b);
The max function returns the larger of the two integers.
#include <stdlib.h>
external int ComputeValue1 (void);
external int ComputeValue2 (void);
main()
{
int maxValue;
value1 = ComputeValue1();
value2 = ComputeValue2();
maxValue = max (value1, value2);
}