C語言#error指令

#error預處理程序指令用於指示錯誤。如果找到#error指令編譯器將發出致命錯誤,並且跳過進一步的編譯過程。

#error示例

我們來看一個簡單的例子來使用#error預處理器指令。創建一個源文件:error-example.c,其代碼如下所示 -

#include <stdio.h>

#ifndef PI  
#error First include then compile  
#else  
void main() {
    float a = 1000.999;
    printf("b = %f\n", a);
}
#endif

執行上面示例代碼,得到以下結果 -

Compile Time Error: First include then compile

創建一個源文件:error-example2.c,其代碼如下所示 -

#include <stdio.h>
#define PI  3.14159

#ifndef PI  
#error First include then compile  
#else  
void main() {
    float a = 1000.999;
    printf("b = %f\n", a);
}
#endif

執行上面示例代碼,得到以下結果 -

b = 1000.999023