Create dayofweek.c

This commit is contained in:
Jan Bodnar 2016-02-01 10:02:29 +01:00
parent 46dc6af287
commit 1d6cf6ebc4

15
datetime/dayofweek.c Normal file
View File

@ -0,0 +1,15 @@
#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;
}