C庫巨集NULL的值是一個空指標常數。它可以被定義為 ((void*)0), 0 ,0或0L根據編譯器廠商。
可能是以下宣告為NULL巨集取決於編譯器。
#define NULL ((char *)0) or #define NULL 0L or #define NULL 0
NA
NA
下面的例子演示了如何使用NULL巨集。
#include <stddef.h> #include <stdio.h> int main () { FILE *fp; fp = fopen("file.txt", "r"); if( fp != NULL ) { printf("Opend file file.txt successfully "); fclose(fp); } fp = fopen("nofile.txt", "r"); if( fp == NULL ) { printf("Could not open file nofile.txt "); } return(0); }
假設我們有一個現有的檔案file.txt,和一個不存在檔案nofile.txt。讓我們編譯和執行上面的程式,這將產生以下結果:
Opend file file.txt successfully Could not open file nofile.txt