在c语言中,大多数的字符串(字符数组)操作其实就是指针操作。 例如: 1#include <stdio.h>23intmain()4{5chars[20] ="hello world";6char*p =s;7p[0] ='a';8*p ='b';910printf("%s\n", s);//bello world1112char*c ="hello world";13//c[0] = 'a';//编译没有问题,但运行会出现段错误。