首页 > 编程语言 > 详细

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

时间:2014-07-10 17:24:21      阅读:474      评论:0      收藏:0      [点我收藏+]
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的区别

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!