Function Call Expression
Function call expression are expressions that call and run a specified function and evaluates to the return of the function. In case the return value is not assigned to any variable or used in another expression, then it will be simply discarded.
If the return type of the function is void
, then the
function call expression will not return any value.
See also Functions.