A postfix-expression followed by the function-call operator, ( ), specifies a function call. The arguments to the function-call operator are zero or more expressions separated by commas — the actual arguments to the function.
The postfix-expression must be of one of these types:
T
. An example declaration isT func( int i )
T
. An example declaration isT (*func)( int i )
T
. An example declaration isT (&func)(int i)
T
. Example function calls are(pObject->*pmf)();
(Object.*pmf)();