Update utc_time.c

This commit is contained in:
Jan Bodnar 2016-04-07 16:46:55 +02:00
parent b13b341216
commit a7356c7e76

View File

@ -7,7 +7,7 @@ int wmain(void) {
GetSystemTime(&st);
wprintf(L"The system time is: %02d:%02d:%02d\n",
wprintf(L"The UTC time is: %02d:%02d:%02d\n",
st.wHour, st.wMinute, st.wSecond);
return 0;