Array of strings in C?

Hello,

(I searched the forums and Google and found nothing.) How do I make an array of string in C? I got something like

char * array[] = { “one”, “two”, “three” };

but it won’t compile. I tried array[][] as well and it won’t compile either. How is this possible?

I don’t want to use strcpy or anything. I want a one-liner.

TIA