C has the typedef construct to create synonyms for type names.
Read More..
typedef <type descriptor> T
typedef int Distance;
typedef int type1[10];
typedef type1 *type2;
typedef struct { int field1;
type2 field2;
} type3;
typedef type3 type4[5];
-- Ullman