C Standard Library 简明教程
C library - <iso646_h.h>
C 库头文件 <iso646_h.htm> 允许替代运算符,例如 and 、 xor 、 not 等,这些运算符会返回特定值。例如,在布尔表达式中使用 "and" 而不是 && 可以使代码更具可读性。
有十一种宏是从头文件 iso646.h 派生的 −
Example
以下是 C 库头文件 <iso646_h.htm>,以查看使用替代运算符('and')的两个数字的演示。
#include <stdio.h>
#include <iso646.h>
int main() {
int a = 5;
int b = 3;
// Using the alternative 'and' operator
int sum = a and b;
printf("Sum of %d and %d = %d\n", a, b, sum);
return 0;
}