home *** CD-ROM | disk | FTP | other *** search
- In this example, the typedef statement creates AGE as a synonym
- for int. The variable current_age is defined with type AGE.
- Because AGE is a synonym for int, the value of current_age can be
- assigned to the int variable my_age. You can also use typedef to
- create synonyms for user-defined types.
-