下面是代码:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int *p;
p=(int *)malloc(sizeof(int));
*p=5;
printf("Before freeing=%p\n",p);
printf("Value of p=%d\n",*p);
//making it dangling pointer
free(p);
printf("After freeing =%p\n",p);
printf("Value of p=%d\n",*p);
return 0;
}
下面是输出:
Before freeing=0x1485010
Value of p=5
After freeing =0x1485010
Value of p=0
释放指针后,解除引用给出输出“0”(零)。
下面是另一个也给出“0”的代码
include <stdio.h>
#include <stdlib.h>
int main()
{
int *p;
p=(int *)malloc(sizeof(int));
printf("Before freeing=%p\n",(void *)p);
printf("Value of p=%d\n",*p);
return 0;
}
在这个我没有释放内存,只是分配它,它仍然给出'0'。是不是每个未初始化指针的默认值都是'0'?
为什么会这样?