When I try the second option in the following code to initialize names, I get a segmentation fault. I guess there is something conceptually incorrect with the second option. Any ideas?
char *names[] = {
"Alan", "Frank",
"Mary", "John", "Lisa"
};
char **names = {
"Alan", "Frank",
"Mary", "John", "Lisa"
};
char name[] = "Allan";char **names = &name;– Agent_L Jun 6 '12 at 11:50