Transcription: In this example, the typedef statement creates age as a synonym for int. The variable currentAge is defined with type Age. Because Age is a synonym for int, the value of currentAge can be assigned to the int variable myAge. You can also use typedef to create synonyms for user-defined types.