Variable arguments of pointers

Is it possible to have a variable number of arguments consisting of pointers?

Thanks.
a pointer can behave like an array, so you can have one pointer with many variables inside it, all of the same type (but there are ways around that if you want to get snarky about it).

a container can contain many pointers, like a vector of pointers.

a function can have multiple parameters, and each can be a pointer. It can also have variable # of arguments, which can also be pointers.

so it is doable, though your question is very vague.
Topic archived. No new replies allowed.