The compiler looks at the name of the function that you are calling and at the 'types' of the parameters, then looks for a function with that name that takes that 'type' of parameter, and calls that function (or more precisely, the compiler inserts code into the executable to call the that function).
|