how can i declare something like this?
int main(int argc, char *argv[]){
char *users[] = {};
char *names[] = {};
openPasswd(users, names);
return 0;
}
void openPasswd(char &users[] = {}, char &names[] = {}){
}
as you see i want to populate the 2 char arrays from the function back to the main program.
thank you!!!