What is the difference between char * const and const char *?

前端 未结 19 1123
执笔经年
执笔经年 2020-11-22 03:31

What\'s the difference between:

char * const 

and

const char *
19条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 03:40

    const * char is invalid C code and is meaningless. Perhaps you meant to ask the difference between a const char * and a char const *, or possibly the difference between a const char * and a char * const?

    See also:

    • What are const pointers (as opposed to pointers to const objects)?
    • Const in C
    • Difference between const declarations in C++
    • C++ const question
    • Why can I change the values of a const char* variable?

提交回复
热议问题