C/iso646.h — различия между версиями
Admin (обсуждение | вклад) (Новая страница: «The iso646.h header file is part of the C standard library. It was added to this library in a 1995 amendment to the C90 standard. It defines a number of macros which…») |
Admin (обсуждение | вклад) |
||
Строка 1: | Строка 1: | ||
+ | {{C Standard library}} | ||
+ | |||
+ | |||
The iso646.h header file is part of the C standard library. It was added to this library in a 1995 amendment to the C90 standard. It defines a number of macros which allow programmers to use C language bitwise and logical operators, which, without the header file, cannot be quickly or easily typed on some international and non-QWERTY keyboards. | The iso646.h header file is part of the C standard library. It was added to this library in a 1995 amendment to the C90 standard. It defines a number of macros which allow programmers to use C language bitwise and logical operators, which, without the header file, cannot be quickly or easily typed on some international and non-QWERTY keyboards. | ||
Текущая версия на 12:12, 22 июня 2010
C | |
---|---|
Макрос | Определен как |
---|---|
and | && |
and_eq | &= |
bitand | & |
bitor | | |
compl | ~ |
not | ! |
not_eq | != |
or | || |
or_eq | |= |
xor | ^ |
xor_eq | ^= |