What are the differences between adding and not adding the static
keyword in the following array of pointers declaration.
static char *list[MAX] = {
"Katrina",
"Nigel",
"Alistair",
"Francesca",
"Gustav"
};
this declaration is located inside the main
function