Function max( a, b )
- Description:
-
Returns the greater of two integer values.
If the arguments have the same value, the result is that same value.
- Parameters:
-
- a (integer)
- an argument.
- b (integer)
- another argument.
- Return Value (integer):
- the larger of
a
and b
.
- Signature:
- int max(int, int)