
840 Additional Information about ANSI and TURBO-C++
SUMMARY
Table 21.3 Turbo C++ header files
iostream.h complex.h strstrea.h
constream.h fstream.h bcd.h
process.h generic.h string.h
stdlib.h iomanip.h values.h
math.h new.h float.h
21.14 C++ OPERATOR KEYWORDS
The C++ committee suggested keywords for operators, such as &&, ||. The keywords can be used
in expressions instead of operators. Table 21.4 describes the operator keywords.
Table 21.4 C++ operator keywords
Operator Keyword
xor_eq ^=
xor ^
or_eq |=
or ||
not_eq !=
not !
compl ~
bitor |
bitand &
and_eq &=
and &&
(1) The ANSI C++ added many new char-
acteristics to the original C++. The new
charact ...