You are on page 1of 1

1 #include <stdio.

h>
2 int main()
3 {
4 enum {hai, ba, tu, nam, sau, bay};
5 int x = hai;
6 printf("%d", x);
7 return 0;
8 }
9

You might also like