C语言进阶——enum, sizeof, typedef 分析11 ... 1 enum Color 2 { 3 GREEN, 4 BLUE, 5 RED 6 }; 7 8 enum Color c = GREEN; 9 10 printf("%d\n",c); ...
確定! 回上一頁