1. enumerations without enumerations: typedef enum { Up, Down, Left, Right } Direction; typedef Direction = int; const Direction Up = 0; const Direction Down = 1; ... with