Definitions for "Default argument"
Keywords:  argument, minibuffer, ret, omits, emacs
In a C++ function definition, an argument with an assigned value that specifies the value an argument should assume if none is supplied in the function call.
A default value associated with a function parameter. If a call to the function omits this argument, the default value is used. Parameters with default arguments must not appear to the left of parameters without default arguments. See argument.
a method of specifying a value for an argument to a function when the user of the function doesn't supply a value for that argument