/* testarr10.cpp CIS 150 06/23/2005 David Klick This program shows how an array of strings can be declared and used. */ #include using std::cout; const int ARRAY_SIZE = 4; int main(void) { int i; // declare and initialize array of names // each name is also an array of characters // a maximum length for each name must be specified // - 15 in this case (14 chars + terminating null) char names[][15] = { "Bob", "Carol", "Ted", "Alice" }; // display names for (i=0; i