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

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

What\'s the difference between:

char * const 

and

const char *
19条回答
  •  再見小時候
    2020-11-22 03:31

    Two rules

    1. If const is between char and *, it will affect the left one.
    2. If const is not between char and *, it will affect the nearest one.

    e.g.

    1. char const *. This is a pointer points to a constant char.
    2. char * const. This is a constant pointer points to a char.

提交回复
热议问题