char scientists[4][10] = {"Newton",
"Maxwell",
"Einstein",
"Feynman"};
Note that the above array can hold a list of up to 4 cstrings (representing here the names of scientists), and each cstring can have up to 9 characters.