From WikiChip
Difference between revisions of "c/iso646.h/and"
m |
|||
Line 1: | Line 1: | ||
{{c title|and macro - <iso646.h>}} | {{c title|and macro - <iso646.h>}} | ||
{{Iso646.h - C}} | {{Iso646.h - C}} | ||
− | The '''and''' macro, which is part of {{C|iso646.h<iso646.h>}}, is a convenient object-like macro name that expands to the '''&&''' operator. The macro was added in {{C|Normative Addendum 1}} in an effort to provide support for international character sets that might not have the <code>&</code> symbols. | + | The '''and''' macro, which is part of {{C|iso646.h|<iso646.h>}}, is a convenient object-like macro name that expands to the '''&&''' operator. The macro was added in {{C|Normative Addendum 1}} in an effort to provide support for international character sets that might not have the <code>&</code> symbols. |
== Synopsis == | == Synopsis == |
Latest revision as of 12:40, 4 January 2015
The and macro, which is part of <iso646.h>, is a convenient object-like macro name that expands to the && operator. The macro was added in Normative Addendum 1 in an effort to provide support for international character sets that might not have the &
symbols.
Synopsis[edit]
#include <iso646.h>
#define and &&
Description[edit]
The and
object-like macro expands to the &&
operator.
Example[edit]
#include <iso646.h>
int main ()
{
if ((2 == 2) and (1 == 1))
return 1;
return 0;
}