In the code below, what do the first and second const mean?
I guess first or second means foo is constant; the other one means elements of foo are also constants. Is it true?
static const char * const foo[] = {"bar", "baz"};
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It means its an array of const pointers (so you can’t change the pointers) to const chars (so you can’t change the chars via the pointers). This is a common way of defining fixed strings, such as command names, in an application.