Naming New Variable Types

An equivalent type name may be defined for any variable type name, using the statement:

typedef type type-name;

Following this statement, a variable declaration of the form:

type-name variable-name;

is exactly equivalent to a declaration of the form:

type variable-name;