You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Windows-API-examples/datetime/utc_time.c

15 lines
229 B

#include <windows.h>
#include <wchar.h>
int wmain(void) {
SYSTEMTIME st = {0};
GetSystemTime(&st);
wprintf(L"The system time is: %02d:%02d:%02d\n",
st.wHour, st.wMinute, st.wSecond);
return 0;
}