팔만코딩경
/
Library DB
/
C에서 시간측정하기
Search
Duplicate
Share
C에서 시간측정하기
간단소개
팔만코딩경 컨트리뷰터
ContributorNotionAccount
주제 / 분류
C
Scrap
태그
time.h
9 more properties
C에서 시간측정하기
#
include
<time.h>
#
include
<stdio.h>
int
main
(
)
{
clock_t
start
,
end
;
start
=
clock
(
)
;
// 시간 측정을 실행할 함수..
end
=
clock
(
)
;
printf
(
"[time : %f]\n"
,
(
float
)
(
end
-
start
)
/
CLOCKS_PER_SEC
)
;
}
C
복사