== Calendar.h == == main.cpp == #include #include "Calender.h" int main() { int year, first; printf("Input the year : "); scanf("%d", &year); printf("Input the first day of week in January (0:Mon -- 6:Sun)"); scanf("%d", &first); printCalender(year, first); fflush(stdin); getchar(); return 0; }