You can obviously cast a pointer to non-const data to a a pointer of the same type to const data:

int       *x = NULL;
int const *y = x;

Adding additional const qualifiers to match the additional indirection should logically work the same way:

int       *      *x = NULL;
int       *const *y = x; /* okay */
int const *const *z = y; /* warning */

Compiling this with GCC or Clang with the -Wall flag, however, results in the following warning:

test.c:4:23: warning: initializing 'int const *const *' with an expression of type
      'int *const *' discards qualifiers in nested pointer types
    int const *const *z = y; /* warning */
                      ^   ~

Why does adding an additional const qualifier "discard qualifiers in nested pointer types"?

link|improve this question

2  
Small point of terminology: A cast is an explicit conversion. What you're doing here is an implicit conversion, not a cast. – Tim Martin Feb 20 '11 at 6:46
Thanks for the correction. – Michael Koval Feb 20 '11 at 6:52
1  
ITYM pointer to const pointer to const ('const pointer' can be ambiguous). If x -> y -> z (where -> just means 'points to' and not the dereference operator) you can change the contents z without changing y. So if it's pointer to const pointer to non-const, you can change the value z without changing y. – Tim Martin Feb 20 '11 at 7:05
1  
@Jeff The FAQ states that it's OK to cast Foo ** to Foo const * const *. I don't quite see how it that doesn't apply here. But it sounds like this is relevant. If you care to post it as an answer, you'll get my vote. – Tim Martin Feb 20 '11 at 7:11
1  
@Jeff M: The C and C++ rules on const-correctness are different, and this question is about C. – caf Feb 20 '11 at 7:21
show 4 more comments
feedback

1 Answer

up vote 10 down vote accepted

The reason why const can only be added one level deep is subtle, and is explained by Question 11.10 in the comp.lang.c FAQ.

Apparently C++ would allow it in this exact case, but C's simpler rules do not.

link|improve this answer
1  
@caf- I was wondering why this was generating a warning! Guess the C++ rules do indeed allow this cast. – templatetypedef Feb 20 '11 at 7:28
Thanks for the informative link. I have previously only extensively used const in C++, so this difference in behavior is quite a surprise. – Michael Koval Feb 20 '11 at 7:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.