**초심플 기능**
하나. 현재 날짜의 달력을 출력해준다.
하나. 이전달/다음달 이동 기능이 있다.

**기본 자료구조**
// 달력 구조체
typedef struct tagCalendar {
int year;
int month;
int first_day_of_week;
int days;
} CALENDAR;


** 주요함수명세 **
// 해당 연월의 달력을 얻어오는 함수
CALENDAR get_calendar(int year, int month);
// 해당 월의 1일의 요일을 얻어오는 함수
DAY_OF_WEEK get_first_day_of_week(int year, int month);
// 해당 월의 총 일수를 얻어오는 함수
int get_day_of_month(int year, int month);
// 달력을 출력하는 함수
void display_calendar(CALENDAR cal);

크리에이티브 커먼즈 라이센스
Creative Commons License
2009/04/15 00:20 2009/04/15 00:20
TAG ~ ,

이 글에는 트랙백을 보낼 수 없습니다

Leave a Comment
[로그인][오픈아이디란?]
1 ... 23 24 25 26 27 28 29 30 31 ... 78