Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Kaggle
- Docker
- 캐치카페
- 데이콘
- AI 경진대회
- 더현대서울 맛집
- Git
- 편스토랑
- programmers
- Real or Not? NLP with Disaster Tweets
- ChatGPT
- 편스토랑 우승상품
- leetcode
- 자연어처리
- 프로그래머스 파이썬
- 금융문자분석경진대회
- dacon
- 파이썬
- 코로나19
- ubuntu
- hackerrank
- Baekjoon
- PYTHON
- 프로그래머스
- 백준
- 우분투
- SW Expert Academy
- 맥북
- gs25
- github
Archives
- Today
- Total
목록
반응형
c elapsed_time (1)
반응형
솜씨좋은장씨
[GCC/C] struct timeval 과 gettimeofday 를 활용하여 코드 실행 소요시간 구하는 방법!
🧑🏻💻 timeval 구조체 strcut timeval { __time_t tv_sec; // Second - 초 __suseconds_t tv_usec; // Microseconds - 마이크로초 } timeval 구조체는 tv_sec 과 tv_usec 로 구성되어있는데 tv_sec 는 1초 2초 3초 할때 그 초 (Seconds) 정보를 tv_usec 는 1 / 1,000,000 초인 마이크로초 (Microseconds) 정보를 저장합니다. timeval 구조체를 사용하기 위해서는 sys/time.h 헤더파일을 include 하면 됩니다. 🧑🏻💻 gettimeofday #include int gettimeofday(struct timeval *tv, struct timezone *tz); 1970..
Programming/C | C++
2023. 3. 5. 08:39
반응형