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

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

What\'s the difference between:

char * const 

and

const char *
19条回答
  •  闹比i
    闹比i (楼主)
    2020-11-22 03:36

    First one is a syntax error. Maybe you meant the difference between

    const char * mychar
    

    and

    char * const mychar
    

    In that case, the first one is a pointer to data that can't change, and the second one is a pointer that will always point to the same address.

提交回复
热议问题