A typedef lets you use a synonym (another name) for a type. E.g.


	typedef double wages;
	typedef int exam_score;
	typedef wages salary;