windows API 获取日期
http://msdn.microsoft.com/en-us/library/windows/desktop/ms725473(v=vs.85).aspx
#include <windows.h>
#include <stdio.h>
void main()
{
SYSTEMTIME st, lt;
GetSystemTime(&st);
GetLocalTime(<);
printf(“The system time is: %02d:%02d\n”, st.wHour, st.wMinute);
printf(” The local time is: %02d:%02d\n”, lt.wHour, lt.wMinute);
}
// Sample output
The system time is: 19:34
The local time is: 12:34