C1412: Not a function call, address of a function

[DISABLE, INFORMATION, WARNING , ERROR]

Description

A function call was probably desired, but the expression denotes an address of the function.

Example
  void f(int i);

  
  void main() {

  
    f;  // warning

  
  }

  
Tips

Write parenthesis (, ) with the arguments after the name of the function to be called.