Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Since C++ is a strongly typed language, a C++ function call should use correct types and the number of actual arguments for each of the function formal parameters. Within the function body, the values of actual arguments are used as the values of corresponding formal parameters. If the number or the order of arguments does not match the number or order of formal parameters, it is a syntax error—no questions asked.
PutValues(25); // one argument is missing: error