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