C语言教程-C中的#else
C语言教程-#else预处理指令用于评估#if条件为假的情况。它可以与#if、#elif、#ifdef和#ifndef指令一起使用。
语法:
#if 表达式
//如果代码
#else
//否则代码
#endif
带有#elif的语法:
#if 表达式
//如果代码
#elif 表达式
//否则如果代码
#else
//否则代码
#endif
C #else示例
让我们看一个简单的例子来使用#else预处理指令。
#include <stdio.h>
#include <conio.h>
#define NUMBER 1
void main() {
#if NUMBER==0
printf("Value of Number is: %d", NUMBER);
#else
print("Value of Number is non-zero");
#endif
getch();
}
输出:
Value of Number is non-zero