char *s定义了一个char型的指针,它只知道所指向的内存单元,并不知道这个内存单元有多大,所以,char *s 不能重新修改其内存单元。
当用char s[]="hello";后,完全可以使用s[0]='a';进行赋值,这是常规的数组操作。
若定义:
char s[] = "hello";
char *p = s;
也可以使用p[0] = 'a';因为这是p ==s,都是指向数组的指针。
下面看另外一种定义:
char *s = (char *)malloc(n);//其中n为要开辟空间的大小
这句话其实相当于:
char s[n];
例子
int main(int argc, char* argv[])
{
char* buf1 = "this is a test";
char buf2[] = "this is a test";
printf("size of buf1: %d\n", sizeof(buf1));
printf("size of buf2: %d\n", sizeof(buf2));
}
结果是:
size of buf1: 4
size of buf2: 15