Compares if one expression equals another expression.
Syntax
Notes
Expressions
|
Result
|
first expression < second expression |
False |
first expression > second expression |
False |
first expression = second expression |
True |
Example
#if WORDSIZE / 32 == 1
#message 32-bit system
#endif
|