xsd #6495(2008/06/14 17:27 GMT) [ C ] Rating0/0=0.00
1 2 3 4 5 6 7 8 9 10 11 12
#include <stdio.h> #include <windows.h> int main(int argc, char **argv) { SYSTEMTIME st; GetLocalTime(&st); printf("%04d%02d%02d%02d%02d%02d.%03d\n", st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute, st.wSecond, st.wMilliseconds); return 0; }
Rating0/0=0.00-0+
1 reply [ reply ]
xsd
#6495()
[
C
]
Rating0/0=0.00
ただし、クロックの分解能(精度)は15~16ミリ秒ほどのようです。
Rating0/0=0.00-0+
1 reply [ reply ]