I was just wondering why it would be necessary to create an array of pointer-to-chars whose elements are assigned to strings. Not only that but a const pointer-to char...I read that in this C++ book I'm using to teach myself and I was just curious why that was necessary....any answers/insight would be great. thanks-Chap
Code:
const char* qualify[4] =
{
    "String 1\n",
    "String 2\n",
    "String 3\n",
    "String 4\n"
};