在 C 或 C 中,沒有特殊的方法來比較 NULL 值。我們可以使用 if 語句來檢查變數是否為 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
以上是如何在C/C++中檢查變數是否為NULL?的詳細內容。更多資訊請關注PHP中文網其他相關文章!