Why C doesn't allow implicit conversion from char ** to const char *const * (and C++ does)?

nert

I know implicit conversion from char ** to const char ** cannot be done and why, and that the conversion to char *const * works. See bottom for links to explanation on that.

It all makes sense apart from one particular thing. So I have the following code:

#include <stdio.h>

void
print(const char *const*param)
{
    printf("%s\n", param[0]);
}

int
main(int argc, char **argv)
{
    print(argv);
    return 0;
}

If I compile this as a C++ code, it compiles quite fine. However, if the same code is compiled as a C code only, I get an error (well, a warning, but let's suppose -Werror, i.e. treat warnings as errors).

gcc:

test.c: In function ‘main’:
test.c:12:11: warning: passing argument 1 of ‘print’ from incompatible pointer type [-Wincompatible-pointer-types]
     print(argv);
           ^
test.c:4:1: note: expected ‘const char * const*’ but argument is of type ‘char **’
 print(const char *const*param)
 ^

clang:

test.c:12:11: warning: passing 'char **' to parameter of type 'const char *const *' discards qualifiers in nested pointer types [-Wincompatible-pointer-types-discards-qualifiers]
    print(argv);
          ^~~~
test.c:4:25: note: passing argument to parameter 'param' here
print(const char *const*param)
                        ^

Both behaviours are standard-independent and also compiler-independent. I tried various standards with both gcc and clang.

There are two reasons for this inquiry. Firstly, I want to understand whether there is a difference and, secondly, I have a function that does nothing with any layer of the pointers and I need it to be able to work with const char ** as well as char *const * and char **. Explicitly casting each call is not maintainable. And I have no idea how should the function prototype look like.


This is the question that started my curiosity: Implicit conversion from char** to const char**

And here is another nice explanation for the char ** => const char** problem: http://c-faq.com/ansi/constmismatch.html

If the links are confusing related to this question, feel free to edit them out.

rici

C and C++ are different in this respect. I don't have an answer to why C++ is more generous, other than that the C++ behaviour seems to me to be correct.

C simply doesn't allow indirect const conversion. That is a conservative, easy-to-implement restriction, with the unfortunate consequence that you cannot provide char*[] to a function expecting char const* const*. The restriction is in §6.3.2.3, paragraph 2, and it is simply not recursive:

For any qualifier q, a pointer to a non-q-qualified type may be converted to a pointer to the q-qualified version of the type; the values stored in the original and converted pointers shall compare equal.

C++ allows conversions according to a somewhat complex formulation in §4.4 [conv.qual], paragraph 3. It is permitted to convert

T cvn Pn-1cvn-1 … P1cv1 P0cv0T cv'n Pn-1cv'n-1 … P1cv'1 P0cv'0

(where T is a type; P1…Pn are pointer/array type constructors, and each cv0…cvn is some possibly empty subset of const and volatile)

provided that:

  1. For every k > 0, cvk is a subset of cv'k (so you can't remove a const or a volatile), and

  2. If cvk and cv'k differ for some k > 0, all the following cv'i>k include const.

In the actual standard, that expression is reversed; I put it in the order of declaration, whereas in the standard it is in order of application of the pointer/array constructors. I didn't change the direction of the numbering, though, which is why they are numbered right to left. I also left out some details -- for example, it's not strictly necessary for the two Ts to be identical -- but I think it gives an idea of the intention.

The explanation for the first restriction is reasonably obvious. The second restriction prevents the problem described in the C FAQ, where a const pointer might be stored into a non-const pointer object, and then subsequently used to mutate the const object it points to.

The bottom line is that in C++, your prototype const char *const * param will work with arguments of type char**, const char**, or even char*const*, but in C only the last one will work without warning, and it is the least useful. The only workaround I know of (other than switching to C++) is to ignore the warning.

For what it's worth, there is a note in the Rationale section of the Posix specification of the exec* interfaces about the problem this causes for these prototypes, and the workaround selected by Posix, which is to use char*[] as the prototype and textually note that these are constant: (emphasis added)

The statement about argv[] and envp[] being constants is included to make explicit to future writers of language bindings that these objects are completely constant. Due to a limitation of the ISO C standard, it is not possible to state that idea in standard C. Specifying two levels of const-qualification for the argv[] and envp[] parameters for the exec functions may seem to be the natural choice, given that these functions do not modify either the array of pointers or the characters to which the function points, but this would disallow existing correct code. Instead, only the array of pointers is noted as constant.

There's a useful compatibility chart following that paragraph, which I didn't quote because of the formatting limitations of this site.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

C++: invalid conversion from 'const char*' to 'size_t'?

From Dev

C++ invalid conversion from ‘char*’ to ‘const unsigned char*’

From Dev

C - [Error] invalid conversion from 'char' to 'const char*' [-fpermissive]

From Dev

c++ invalid conversion from 'const char*' to 'char*'

From Dev

Why doesn't QTest allow const char* as a test data format?

From Dev

C complains about passing char** value to function taking char const*const*const but C++ doesn't

From Dev

c++: why can't we convert char ** to const char **

From Dev

Conversion from int to c-string (const char*) fails

From Dev

Compare two char variable using strcmp in c++ shows invalid conversion from 'char' to 'const char*'

From Dev

Invalid conversion from 'char' to 'const char*' [-fpermissive](idk why)

From Dev

c++ const char* to char*

From Dev

C convert const char * to char

From Dev

No conversion from "const char" to "int"

From Dev

No conversion from DWORD to const char*

From Dev

conversion from `const char*' to `byte'

From Dev

Invalid conversion from ‘const char*’ to ‘unsigned char*’

From Dev

invalid conversion from 'const char*' to 'char*'

From Dev

Invalid conversion from 'char' to 'const char *'

From Dev

error: invalid conversion from ‘char’ to ‘const char*

From Dev

invalid conversion from ‘const char*’ to ‘char*

From Dev

error: invalid conversion from ‘char’ to ‘const char*

From Dev

Conversion not valid from char to const char*

From Dev

Modify const char * in C

From Dev

Redefine const char* in C

From Dev

invalid conversion from ‘const char*’ to ‘char’ / uninitialized const member in struct

From Dev

C++ Why const LPSTR is different than const char *?

From Dev

C++ Why const LPSTR is different than const char *?

From Dev

Why does ostream::write() require ‘const char_type*’ instead of ‘const void*’ in C++?

From Dev

C++ - copying from const char* to string

Related Related

  1. 1

    C++: invalid conversion from 'const char*' to 'size_t'?

  2. 2

    C++ invalid conversion from ‘char*’ to ‘const unsigned char*’

  3. 3

    C - [Error] invalid conversion from 'char' to 'const char*' [-fpermissive]

  4. 4

    c++ invalid conversion from 'const char*' to 'char*'

  5. 5

    Why doesn't QTest allow const char* as a test data format?

  6. 6

    C complains about passing char** value to function taking char const*const*const but C++ doesn't

  7. 7

    c++: why can't we convert char ** to const char **

  8. 8

    Conversion from int to c-string (const char*) fails

  9. 9

    Compare two char variable using strcmp in c++ shows invalid conversion from 'char' to 'const char*'

  10. 10

    Invalid conversion from 'char' to 'const char*' [-fpermissive](idk why)

  11. 11

    c++ const char* to char*

  12. 12

    C convert const char * to char

  13. 13

    No conversion from "const char" to "int"

  14. 14

    No conversion from DWORD to const char*

  15. 15

    conversion from `const char*' to `byte'

  16. 16

    Invalid conversion from ‘const char*’ to ‘unsigned char*’

  17. 17

    invalid conversion from 'const char*' to 'char*'

  18. 18

    Invalid conversion from 'char' to 'const char *'

  19. 19

    error: invalid conversion from ‘char’ to ‘const char*

  20. 20

    invalid conversion from ‘const char*’ to ‘char*

  21. 21

    error: invalid conversion from ‘char’ to ‘const char*

  22. 22

    Conversion not valid from char to const char*

  23. 23

    Modify const char * in C

  24. 24

    Redefine const char* in C

  25. 25

    invalid conversion from ‘const char*’ to ‘char’ / uninitialized const member in struct

  26. 26

    C++ Why const LPSTR is different than const char *?

  27. 27

    C++ Why const LPSTR is different than const char *?

  28. 28

    Why does ostream::write() require ‘const char_type*’ instead of ‘const void*’ in C++?

  29. 29

    C++ - copying from const char* to string

HotTag

Archive