- 论坛徽章:
- 0
|
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main (void)
{
char **p = NULL;
p = (char**)malloc(3);
p[0] = (char*)malloc(5);
p[1] = (char*)malloc(5);
p[2] = (char*)malloc(5);
strcpy(p[0], "zero");
strcpy(p[1], "one");
strcpy(p[2], "two");
printf("the address of p is %d\n", p);
printf("p[0] = %s\n", p[0]);
printf("p[1] = %s\n", p[1]);
printf("p[2] = %s\n", p[2]);
char **tmp = p;
p = (char**)realloc(tmp, 20);
printf("the address of new p is %d\n", p);
printf("p[0] = %s\n", p[0]); /*这里就挂了。。。*/
return 1;
}
前面可以正常打印zero,one,two,没有问题
为什么我对二级指针进行进行realloc以后,堆里的数据就变掉了呢? |
|