Possible Duplicate:
The written versions of the logical operators.
I notice that C++ define keyword and
, or
, not
, xor
, and_eq
, or_eq
, not_eq
and xor_eq
as an alternative to &&
, ||
, !
, ^
, &=
, |=
, !=
and |=
. and they're rarely used! What's wrong? Are they not portable?