Variadic Functions
Learn about the variadic functions.
We'll cover the following...
What are variadic functions?
A variadic function is one which accepts a variable number of input arguments. We can write functions that are variadic in C. Sometimes this may be useful. For example, the printf
function which, as we’ve already seen, can accept a variable number of input arguments.
Here’s ...