I have one question... I have to pass as argument an array of string to a function that has an array of pointer to void as argument, but my code, that's like this:
//
void f(void *ptr[])
{}
//
int main()
{
//
string str[2] = {"hello", "world"};
f(....);
//
}
doesn't work.
Can somebody help me?