How can I get a variable amount of arguments in a function without providing how many arguments will be passed?
For example, when you use a VA List, the first parameter must be the amount of arguments passed.. I don't want that. I want to just start passing any amount of arguments to the function.
Is there a way to do this? I've heard that the boost library supports this.. Whether or not that is true, I don't know but I don't "want" to use boost. Though I may have to if the above statement is true and there is no other way.
So again, can I do this? And if not, why?