[oracle@asm test]$ cat b.c
#include
int main(int argc, char **argv)
{
char *s = "abc";
char *s1;
s1 = s;
s[0] = 'w';
printf("s = %s, s1=%s\n", s, s1);
return (0);
}
[oracle@asm test]$ gcc -wall -o b b.c
[oracle@asm test]$ ./b
segmentation fault
#因为"abc" 静态存储区,是常量区,不可改, s指针在栈区,但是指向的内容是静态存储区的内容,s[0]企图通过s这个指针改变常量区的内容,所以不对。
[oracle@asm test]$ vi b.c
[oracle@asm test]$ cat b.c
#include
int main(int argc, char **argv)
{
char s[] = "abc";
char *s1;
s1 = s;
s[0] = 'w';
printf("s = %s, s1=%s\n", s, s1);
return (0);
}
[oracle@asm test]$ gcc -wall -o b b.c
[oracle@asm test]$ ./b
s = wbc, s1=wbc
#"abc" 在静态存储区,s[]在栈区, 赋值给s[]这个变量后,改变s[0],是改变栈区的内容,所以不出错。
[oracle@asm test]$ uname -a
linux asm 2.6.9-22.el #1 mon sep 19 18:20:28 edt 2005 i686 i686 i386 gnu/linux
[oracle@asm test]$ gcc -v
reading specs from /usr/lib/gcc/i386-redhat-linux/3.4.4/specs
configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-java-awt=gtk --host=i386-redhat-linux
thread model: posix
gcc version 3.4.4 20050721 (red hat 3.4.4-2)
阅读(794) | 评论(0) | 转发(0) |