How can I write a function that accepts a variable number of arguments? Is this possible, how?
As others have said, C-style varargs. But you can also do something similar with default arguments.