C中的NULL指针
空指针是不指向任何内容的指针。
空指针的一些用法是:
a)在尚未为该指针变量分配任何有效内存地址时初始化该指针变量。
b)当我们不想传递任何有效的内存地址时,将空指针传递给函数参数。
c)在访问任何指针变量之前检查空指针。这样,我们就可以在与指针相关的代码中执行错误处理,例如,仅当其不为NULL时才取消引用指针变量。
算法
Begin. Declare a pointer p of the integer datatype. Initialize *p= NULL. Print “The value of pointer is”. Print the value of the pointer p. End.
示例
#include <stdio.h> int main() { int *p= NULL;//initialize the pointer as null. printf("The value of pointer is %u",p); return 0; }
输出结果
The value of pointer is 0.