当前位置: C语言 -- 标准库 -- <iso646.h>

<iso646.h>头文件

<iso646.h>头文件定义了11个宏,为ISO 646标准字符集不支持的C运算符提供了替代拼写方案,具体如下:

宏(macro):
and 表示&&的宏。
and_eq 表示&=的宏。
bitand 表示&的宏。
bitor 表示|的宏。
compl 表示~的宏。
not 表示!的宏。
not_eq 表示!=的宏。
or 表示||的宏。
or_eq 表示|=的宏。
xor 表示^的宏。
xor_eq 表示^=的宏。