i know that in C\C++ we can create opcionals parameters, like the printf() function:
printf(char *string, ...); // i have seen these header in stdio.h
how can i do that?
i need build 1 function that accpet several string parameters, but i don't know work with them
any advices?