Compiler Error 165

Too few arguments in function call

Function prototype is defined with X number of parameters and does not match the number of parameters passed in the function call.

For example:

extern void foo(int x);
void bar(void)
{
      foo();
}

Gives:

  1. 165: too few arguments in function call

All wikipages