如何在 C/C++ 中检查变量是否为 NULL?”
在 C 或 C++ 中,没有特殊方法来比较 NULL 值。我们可以使用 if 语句来检查变量是否为 null。
这里我们会看到一个程序。我们将尝试以读取模式打开一个不在系统中的文件。因此,该函数将返回 null 值。我们可以使用 if 语句检查它。查看代码以更好地理解。
示例代码
#include <stdio.h> main() { //try to open a file in read mode, which is not present FILE *fp; fp = fopen("hello.txt", "r"); if(fp == NULL) printf("File does not exists"); fclose(fp); }
输出
File does not exists
广告