c언어 현재 날짜 및 시간 출력
프로그래밍/C, C++2020. 9. 14. 11:11
반응형
# vi test.c
#include <stdio.h> #include <time.h> #include <sys/timeb.h> #include <sys/time.h> int main () { struct timeval tv; struct timezone tz; struct tm *tm; gettimeofday(&tv, &tz); tm = localtime(&tv.tv_sec); printf("%04d-%02d-%02d %02d:%02d:%02d.%06d\n", tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec, tv.tv_usec); return 0; } |
# gcc test.c -o test
# ./test
2020-09-14 11:10:59.496912
반응형
'프로그래밍 > C, C++' 카테고리의 다른 글
c언어 문자열에서 공백 또는 특정 문자 제거 (0) | 2020.09.21 |
---|---|
c언어 변수를 이용해 시스템 명령어 사용 (0) | 2020.09.21 |
소켓 생성하여 서버로 데이터 전송 및 받아오기 (0) | 2020.02.27 |
c언어로 파일 생성 (내용 입력) (0) | 2020.01.10 |
C 언어로 리눅스 명령어 실행하기 (0) | 2020.01.08 |
댓글()