char a[]="abcdef";
char *p ="cdefg";
a[1]='A';
p[1]='A';
這段代碼有什麼問題?
#include
int main()
{
char amessage[]="now is the time";
char *pmessage = "now is the time"; /*字符串常量,不能更改*/
amessage[1] = 'A';
pmessage[2] = 'B';
printf("%s\n",amessage);
printf("%s",pmessage);
while(1);
}
為什麼會出現這個問題呢?
pmessage 指向的 "now is the time"; 是存貯在常量區的,所以其內容不能修改。
char amessage[] 定義時,編譯器為 amessage 分配了空間,然後將字符串復制到其中,這種從 堆棧上 分配來的空間就可以修改。