[例1]未初始化的指针(uninitialized pointer)。 int *p; scanf("%d", p); /* ERROR */ /* 把值写到未知的内存空间 */ 运行小程序时,p 中随机地址指向安全区域(不指向程序的...
基于12个网页-相关网页
Under most compilers, if we use an uninitialized pointer the effect will be to use whatever bits are in the memory in which the pointer resides as if it were an address.
对大多数的编译器来说,如果使用未初始化的指针,会将指针中存放的不确定值视为地址,然后操纵该内存地址中存放的位内容。
You then increment the pointer, which makes it point to uninitialized memory, which just happens to have a zero in it.
然后增加指针,指向未初始化的内存,这恰好有一个零。
应用推荐