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

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

What\'s the difference between:

char * const 

and

const char *
19条回答
  •  情深已故
    2020-11-22 03:36

    To avoid confusion, always append the const qualifier.

    int       *      mutable_pointer_to_mutable_int;
    int const *      mutable_pointer_to_constant_int;
    int       *const constant_pointer_to_mutable_int;
    int const *const constant_pointer_to_constant_int;
    

提交回复
热议问题