In some code that I read, there was an initializing statement like this
char *array[]= { \"something1\", \"something2\", \"something3\" };
This defines a array of char pointers (aka. "c strings").
For accessing the content you could do:
for (int i=0; i