December 6, 2005 03:15 PM EST
C/C++ language variadic functions are functions that accept a variable number
of arguments. Variadic functions are implemented using either the ANSI C
stdarg approach or, historically, the UNIX System V vararg approach. Both
approaches require that the contract between the develo... (more)