제목 : 8.3.1 열거형을 사용한 문자열 상수화 : 열거형.c
글번호:
|
|
137
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2005/08/10 오후 11:59:12
|
조회수:
|
|
4890
|
#include <stdio.h>
//열거형 선언 : 상하좌우
enum Direction
{
Top, //0
Bottom, //1
Left, //2
Right //3
};
void main()
{
printf("%d\n", Top);
printf("%d\n", Bottom);
printf("%d\n", Left);
printf("%d\n", Right);
}