C語言 列舉資料型別

哥們並肩走過發表於2020-11-21

1、宣告列舉型別並定義列舉變數

#include <stdio.h>

void main(){
	// 宣告列舉型別並定義列舉變數
	enum {yellow,blue,black} color;
	color = blue; // color 只能是 yellow,blue,black 三種顏色中其中某一種
	printf("%d\n",color); // 1
}

相關文章