?C???,????GetSystemTime()
??????????????????windows.h
?????
?????GetSystemTime()
???????:
#include#include int main() { SYSTEMTIME st; GetSystemTime(&st); printf("Current system time: d:d:d\n", st.wHour, st.wMinute, st.wSecond); return 0; }
??????,GetSystemTime()
??????????????,??????SYSTEMTIME
?????st
????,????st
?????(??wHour
?wMinute
?wSecond
)????????????????,??printf()
??????????????
???,GetSystemTime()
???????????(UTC)??,?????????????????,????GetLocalTime()
???