1 2 3 4 5 6 7 8 9 10
typedef int a; typedef int b; int main(void) { enum a { a = 1, b = a + 2, c = a + b + 3 }; return 0; }