[WARNING]
A function call was probably desired, but the expression denotes an address of the function.
void f(int i);
void main() {
f; // warning
}
Write parenthesis (, ) with the arguments after the name of the function to be called.