C 标准库 —— stdio.h

类型及宏定义

  • (1)NULL

    
    #ifndef NULL
    
    
    #ifdef __cplusplus
    
    
    #define NULL 0
    
    
    #else /* __cplusplus */
    
    
    #define NULL ((void *)0)
    
    
    #endif /* __cplusplus */
    
    
    #endif /* NULL */
    

你可能感兴趣的:(C 标准库 —— stdio.h)