im not sure exactly what its called or how to use it.. but im guessing its used to pass over variables as arguments to a function, ive only seen it in functions with this added after it: ,...) somewaht similar to the code below..
int myfunc(char *data,const char *data2[B],...[/B])
{
....
return 0;
}
int main(void)
{
char varhold[21];
memset(varhold,0,sizeof(varhold));
sprintf(varhold,"bob");
myfunc("hey","hi %s",varhold);
return 0;
}
can someone tell me what it is? how to use it? examples?