Typedef
Objective #1: Use typedef
- The keyword typedef allows you to substitute an identifier for a C++ keyword or other token.
- For example, the statement
typedef string String
allows you to use the word String anywhere in a program where string is expected.