maxInt Function

Returns the largest allowed value for type int. Any other int value will be less than or equal to the returned value.


int maxInt()

The maximum value allowed for an integer.

static void maxIntExample(Args _arg)
{
    int i;
    ;
    print "The maximum value for type int is " + int2Str(maxInt());
    pause;
}

Community Additions

ADD
Show: