May 2003
Intermediate to advanced
808 pages
32h 24m
English
typedef keyword — Declares a type synonym
decl-specifier := typedefA typedef declaration creates
a synonym for an existing type. It does not create a new type (as
class and enum do).
typedefunsigned int UINT;typedefmap<string,string> dictionary;
class, declaration, enum, struct, typeid, union, Chapter
2