Compares if one expression does not equal another expression.
Syntax
Notes
Expressions
|
Result
|
first expression < second expression |
True |
first expression > second expression |
True |
first expression = second expression |
False |
Example
#if CHARSIZE != BYTESIZE
#include "unisupp.h"
#endif
|