1. 程式人生 > >Linux應用程式開發筆記:測試程式碼執行時間

Linux應用程式開發筆記:測試程式碼執行時間

 

#include <stdio.h>
#include <sys/times.h>
#include <unistd.h> 


void main(void)
{
    double duration;
    clock_t start, finish;

    start = clock();

    //code

    finish = clock();

    duration = (double)(finish - start) / CLOCKS_PER_SEC;
    
    printf( "%f seconds\n", duration  );       
}