Declare array of String

If you are using string constants, the compiler can count so you don't have to set aside a fixed amount of space:

char *pointer[] = { "uno", "due",  "due"};
1 Like