variadic function code example
Example: variadic functions
Variadic functions are functions which take a variable number of arguments.
In C programming, a variadic function will contribute to the flexibility of
the program that you are developing.
int printf(const char* format, ...);