码迷,mamicode.com
首页 > 编程语言 > 详细

C语言char s[] 和 char *s的区别

时间:2014-07-10 17:23:56      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:char s

C语言char s[] 和 char *s的区别,下面这个回答讲解的很清晰。

The difference here is that

char *s = "Hello world";

will place Hello world in the read-only parts of the memory and making s a pointer to that, making any writing operation on this memory illegal. While doing:

char s[] = "Hello world";

puts the literal string in read-only memory and copies the string to newly allocated memory on the stack. Thus making

s[0] = ‘J‘;
legal.

来自  http://stackoverflow.com/questions/1704407/what-is-the-difference-between-char-s-and-char-s-in-c

C语言char s[] 和 char *s的区别,布布扣,bubuko.com

C语言char s[] 和 char *s的区别

标签:char s

原文地址:http://blog.csdn.net/vonzhoufz/article/details/37591879

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!