Windows-API-examples/datetime/dayofweek.c
2016-02-01 10:02:29 +01:00

16 lines
296 B
C

#include <windows.h>
#include <wchar.h>
int wmain(void) {
SYSTEMTIME st = {0};
wchar_t *dn[] = { L"Sunday", L"Monday", L"Tuesday",
L"Wednesday", L"Thursday", L"Friday", L"Saturday" };
GetLocalTime(&st);
wprintf(L"Today is %ls\n", dn[st.wDayOfWeek]);
return 0;
}