Errata page 182
The statement in the middle of the page 182 regarding applying the [u]sizeof</u> operator to a type name is INCORRECT.
Incorrect statement: size_t_size = sizeof(long);
Corrected statement: size_t size = sizeof(long);
Note the underline character ("_") should not connect the type size_t to the variable size.
SilverFoxtor
|