C1821: Wrong number of arguments

[ERROR]

Description

A function call was specified with the wrong number of formal parameters.

Example
  struct A {

  
   void f();

  
  };

  
  void main() {

  
    A a;

  
    a.f(3);    // error

  
  }

  
Tips

Specify the correct number of arguments.