time_t timer;
struct tm *t;
/* gets time of day */
timer = time(NULL);
/* converts date/time to a structure */
t = localtime(&timer);
sprintf(today"%04d-%02d-%02d", t->tm_year+1900, t->tm_mon+1, t->tm_mday);
'프로그래밍 > VC++ 개발 코딩' 카테고리의 다른 글
VC2003 명령중 컴파일(Command line compile) (0) | 2014.01.17 |
---|---|
Process 안전하게 종료시키자 (0) | 2014.01.17 |
RichEditCtrl, RichEdit 사용해보자 (0) | 2014.01.17 |
CreateThread 만들어보자 (0) | 2014.01.17 |
Dll . exe file 정보파일 읽어오기 (0) | 2014.01.17 |