列挙型

列挙型

C言語 enum 列挙型とは?

今回は、列挙型について説明していきます。#include <stdio.h>/* 列挙型のtvを宣言 */enum tvCH{ TV_NHK, TV_KYOIKU, TV_FUJI};void show(enum tvCH ch);void...