본문 바로가기
개발 업무(코딩)-개발자였을때 썼던..

clock_t 를 이용한 c프로그램 시간측정

by 주용사 2023. 1. 8.
728x90
#include <stdio.h>
#include <time.h>

int main()
{
        clock_t start, end;

        int i, sum;
        sum = 0;

        start = clock();
        for( i = 0 ; i < 10000000 ; i++)
                sum+=1;

        end = clock();
        printf("%d, time = %f\n", sum, (double) (end - start)/CLOCKS_PER_SEC);

}

https://acholyte.tistory.com/entry/C%EC%96%B8%EC%96%B4-%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%A8-%EC%86%8D%EB%8F%84-%EC%B8%A1%EC%A0%95

728x90