const and char*
NOTICE:
char *str = "hello"; the value of str is the address of the first letter (h) of string ;
const and char*
NOTICE:
char *str = "hello"; the value of str is the address of the first letter (h) of string ;
转载于:https://www.cnblogs.com/tianhangzhang/p/4921823.html