* 현재 시간의 밀리세컨드 구하는 방법
[밀리세컨드 구하는 방법] #include <time.h> #include <sys/timeb.h> void GetMilSecStr(char *dt) { struct timeb itb; struct tm *lt; ftime(&itb); lt = localtime(&itb.time); memset(dt , 0x00 , sizeof(dt)); // format : YYMMDDhhmmssuuuuuu sprintf(dt, "%04d%02d%02d%02d%02d%02d%03d" , lt->tm_year + 1900, lt->tm_mon + 1, lt->tm_mday , lt->tm_hour, lt->tm_min, lt->tm_sec , itb.millitm); } |
'개발 관련 지식 > C언어' 카테고리의 다른 글
[C언어] getch, getche, getchar 함수 / system 함수 (0) | 2015.03.19 |
---|---|
[C언어] 현재 시간의 마이크로세컨드 구하는 방법 (0) | 2014.11.18 |
[C언어] 리눅스 pthread_kill 함수 사용 및 정리 (0) | 2014.07.27 |