C provides a special mechanism for defining functions that take a variable number of arguments. printf() and scanf() are typical examples of these variadic functions. A variadic function must take at ...
If you know lots of programming languages, then you're already accustomed to the ability to declare and use functions with a variable number of arguments, where the number and type of arguments aren't ...