Compiler Error C2198

'identifier' : too few actual parameters

The specified function was called with too few parameters, or the function declaration was incorrect.

The following is an example of this error:

void func( int, int );
main()
{
   func( 1 );   // error, only one actual parameter
}