March 2013
Intermediate to advanced
773 pages
22h 9m
English
Symbols
-- (double minus). See decrement operators (--)
# (pound sign), directive syntax
% (modulus) operator
& (ampersand), for declaring reference parameters
&& (AND operator)
/* */, comment syntax
:: (double colon), scope resolution operator
@entry, function documentation
_ (underscore), identifiers beginning with
{ (left brace), C++ functions
{ } (braces), block syntax
|| (OR operator)
} (right brace), C++ functions
< > angle brackets, header syntax
<< (left arrows), bitwise operator
<< (left arrows), insertion operator. See insertion operator (<<)
>> (right arrows), bitwise operator
>> (right arrows), extraction operator. See extraction operator (>>)
= (equals). See assignment operators (=)
= = (double equals). See relational operators ...