整数常量的符号名称...
#include <stdio.h> enum _bool {false,true}; int main(){ enum colors { red, orange, yellow, green, blue, violet, }; enum colors a = green; int b = yellow; printf("%d ",a); printf("%d ",b); }