728x90
728x90
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <stdlib.h>
#include <windows.h>
int main( void )
{
SYSTEMTIME stSt;
// 그리니치 표준일시 얻기
GetSystemTime(&stSt);
printf("%04d-%02d-%02d %02d:%02d:%02d\n",
stSt.wYear,
stSt.wMonth,
stSt.wDay,
stSt.wHour,
stSt.wMinute,
stSt.wMinute);
// 시스템의 현재 일시 얻기
GetLocalTime(&stSt);
printf("%04d-%02d-%02d %02d:%02d:%02d\n",
stSt.wYear,
stSt.wMonth,
stSt.wDay,
stSt.wHour,
stSt.wMinute,
stSt.wMinute);
system("PAUSE");
return 0;
}
728x90
'WORK > Sotfware' 카테고리의 다른 글
DLCP 구조도 (0) | 2010.06.17 |
---|---|
TI 다운로드 (0) | 2010.03.02 |
TIniFile 볼란드 헬프에서~! (0) | 2009.08.27 |
ini file Help (0) | 2009.08.26 |
ini file로 저장,읽기 (0) | 2009.08.26 |
댓글