mirror of
https://github.com/janbodnar/Windows-API-examples.git
synced 2024-11-24 11:25:30 +00:00
14 lines
203 B
C
14 lines
203 B
C
#include <windows.h>
|
|
#include <wchar.h>
|
|
|
|
int wmain(void) {
|
|
|
|
SYSTEMTIME st = {0};
|
|
|
|
GetLocalTime(&st);
|
|
|
|
wprintf(L"Today is: %d-%02d-%02d\n", st.wYear, st.wMonth, st.wDay);
|
|
|
|
return 0;
|
|
}
|